diff options
Diffstat (limited to 'cpp/allTests.py')
-rwxr-xr-x | cpp/allTests.py | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py index d8502e15001..df3b10e284f 100755 --- a/cpp/allTests.py +++ b/cpp/allTests.py @@ -17,12 +17,16 @@ for toplevel in ["", "..", os.path.join("..", ".."), os.path.join("..", "..", ". else: raise "can't find toplevel directory!" -for i in [ ("Slice", "errorDetection"), \ - ("Ice", "operations"), \ - ("Ice", "exceptions"), \ - ("Ice", "inheritance"), \ - ("Ice", "faultTolerance"), \ - ("Ice", "locationForward")]: +for i in \ + [ \ + ("Slice", "errorDetection"), \ + ("Ice", "operations"), \ + ("Ice", "exceptions"), \ + ("Ice", "inheritance"), \ + ("Ice", "faultTolerance"), \ + ("Ice", "locationForward"), \ + ("IcePack", "simple"), \ + ]: dir = os.path.join(toplevel, "test", *i) |