about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2015-10-09 17:39:03 +0200
committerAjax <commial@gmail.com>2015-10-09 17:39:03 +0200
commita2494c14424780d8d43ae1dc51509671cec40c16 (patch)
tree4676cdfbdf687ce713e5cb6f6b6a6ef1a0ceab16 /test/test_all.py
parent9bef5b471ccd58def327e8890f1bada6b46a351e (diff)
downloadmiasm-a2494c14424780d8d43ae1dc51509671cec40c16.tar.gz
miasm-a2494c14424780d8d43ae1dc51509671cec40c16.zip
TestAll: delete `exp_graph_test*` from depgraph
Diffstat (limited to 'test/test_all.py')
-rw-r--r--test/test_all.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/test_all.py b/test/test_all.py
index 96c1eadc..9773022f 100644
--- a/test/test_all.py
+++ b/test/test_all.py
@@ -139,19 +139,19 @@ for script in ["win_api_x86_32.py",
 testset += RegressionTest(["depgraph.py"], base_dir="analysis",
                           products=[fname for fnames in (
                               ["graph_test_%02d_00.dot" % test_nb,
+                               "exp_graph_test_%02d_00.dot" % test_nb,
                                "graph_%02d.dot" % test_nb]
                               for test_nb in xrange(1, 18))
                                     for fname in fnames] +
-                          ["graph_test_03_01.dot",
-                           "graph_test_05_01.dot",
-                           "graph_test_08_01.dot",
-                           "graph_test_09_01.dot",
-                           "graph_test_10_01.dot",
-                           "graph_test_12_01.dot",
-                           "graph_test_13_01.dot",
-                           "graph_test_14_01.dot",
-                           "graph_test_15_01.dot"
-                       ])
+                          [fname for fnames in (
+                              ["graph_test_%02d_%02d.dot" % (test_nb, res_nb),
+                               "exp_graph_test_%02d_%02d.dot" % (test_nb,
+                                                                 res_nb)]
+                              for (test_nb, res_nb) in ((3, 1), (5, 1), (8, 1),
+                                                        (9, 1), (10, 1),
+                                                        (12, 1), (13, 1),
+                                                        (14, 1), (15, 1)))
+                           for fname in fnames])
 
 # Examples
 class Example(Test):