aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/cc/saved_model/loader_test.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-10-17 11:53:00 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-10-17 11:57:13 -0700
commit476ef197b86f1ab42a73ac4ab50080953578a161 (patch)
tree0cea72cc8b20125e21ccea80433447294d418d59 /tensorflow/cc/saved_model/loader_test.cc
parentc4fd2362bc73b48add49d7af0ddd9ea7b6409323 (diff)
Automated g4 rollback of changelist 172051437
PiperOrigin-RevId: 172493077
Diffstat (limited to 'tensorflow/cc/saved_model/loader_test.cc')
-rw-r--r--tensorflow/cc/saved_model/loader_test.cc24
1 files changed, 2 insertions, 22 deletions
diff --git a/tensorflow/cc/saved_model/loader_test.cc b/tensorflow/cc/saved_model/loader_test.cc
index 6dd14837b5..0ad6b33bba 100644
--- a/tensorflow/cc/saved_model/loader_test.cc
+++ b/tensorflow/cc/saved_model/loader_test.cc
@@ -29,12 +29,10 @@ limitations under the License.
namespace tensorflow {
namespace {
-constexpr char kTestDataForwardCompatibility[] =
- "cc/saved_model/testdata/half_plus_two_forward_compatibility/00000123";
-constexpr char kTestDataMainOp[] =
- "cc/saved_model/testdata/half_plus_two_main_op/00000123";
constexpr char kTestDataPbTxt[] =
"cc/saved_model/testdata/half_plus_two_pbtxt/00000123";
+constexpr char kTestDataMainOp[] =
+ "cc/saved_model/testdata/half_plus_two_main_op/00000123";
constexpr char kTestDataSharded[] =
"cc/saved_model/testdata/half_plus_two/00000123";
@@ -169,24 +167,6 @@ TEST_F(LoaderTest, PbtxtFormat) {
CheckSavedModelBundle(export_dir, bundle);
}
-// Forward compatibility graph has a new attr with a default value equal to the
-// value used by the server. If we handle new default attrs correctly, this test
-// will pass. This simulates adding new atts to the training code while server
-// code lags behind.
-TEST_F(LoaderTest, ForwardCompatibility) {
- SavedModelBundle bundle;
- SessionOptions session_options;
- RunOptions run_options;
-
- // TODO(b/67753689): Add support for regenerating this model in the export
- // code.
- const string export_dir =
- io::JoinPath(testing::TensorFlowSrcRoot(), kTestDataForwardCompatibility);
- TF_ASSERT_OK(LoadSavedModel(session_options, run_options, export_dir,
- {kSavedModelTagServe}, &bundle));
- CheckSavedModelBundle(export_dir, bundle);
-}
-
TEST_F(LoaderTest, MainOpFormat) {
SavedModelBundle bundle;
SessionOptions session_options;