Disable failing tests in c_api_test.cc

PiperOrigin-RevId: 352811984
Change-Id: I8f195dcbf521d5283ffa810bd46754e866cef559
This commit is contained in:
Kibeom Kim 2021-01-20 09:45:46 -08:00 committed by TensorFlower Gardener
parent 3d2621cee7
commit a801850ccc

View File

@ -707,7 +707,8 @@ TEST(CAPI, ExecuteAddForwardAsync) {
}
#ifdef PLATFORM_GOOGLE
// TODO(b/153349425): Add forwarding tests for TFRT
TEST(CAPI, ExecuteAddTfrt) {
// TODO(b/178003466): Fix and re-enable.
TEST(CAPI, DISABLED_ExecuteAddTfrt) {
ExecuteAdd(
/*async=*/false,
/*forward_input*/ false,
@ -1279,7 +1280,8 @@ void BM_ReadVariable(int iters) {
}
BENCHMARK(BM_ReadVariable);
TEST(CAPI, StringAttributes) {
// TODO(b/178003466): Fix and re-enable.
TEST(CAPI, DISABLED_StringAttributes) {
// Test that TFE_OpSetAttrString doesn't hold on to the value after it
// returns.
TF_Status* status = TF_NewStatus();