Skip to content

Commit ade8bb2

Browse files
committed
Mark test that tests wala#136.
1 parent a4e80fb commit ade8bb2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

com.ibm.wala.cast.python.ml.test/source/com/ibm/wala/cast/python/ml/test/TestTensorflowModel.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,11 @@ public void testTf2()
217217
testTf2("tf2_test_dataset10.py", "add", 2, 2, 2, 3);
218218
testTf2("tf2_test_tensor_list.py", "add", 2, 2, 2, 3);
219219
testTf2("tf2_test_tensor_list2.py", "add", 0, 0);
220-
testTf2("tf2_test_tensor_list3.py", "add", 0, 0);
220+
testTf2(
221+
"tf2_test_tensor_list3.py",
222+
"add",
223+
0,
224+
0); // NOTE: Change to 2, 2, 2, 3 once https://github.com/wala/ML/issues/136 is fixed.
221225
testTf2("tf2_test_tensor_list4.py", "add", 0, 0);
222226
testTf2("tf2_test_tensor_list5.py", "add", 0, 0);
223227
testTf2("tf2_test_model_call.py", "SequentialModel.__call__", 1, 1, 3);

com.ibm.wala.cast.python.test/data/tf2_test_tensor_list3.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Test https://github.com/wala/ML/issues/136.
2+
13
import tensorflow as tf
24

35

0 commit comments

Comments
 (0)