about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2015-08-05 15:51:29 +0200
committerserpilliere <serpilliere@users.noreply.github.com>2015-08-05 15:51:29 +0200
commit6df8da744777a55ff6979bc7dc4a5fee20c8f5c0 (patch)
tree5548597dae504ad8b2ff53ec5a0a39fa6b521152 /test/test_all.py
parent1d48224cd34d1a18763e47f3f61c5340b9587c7e (diff)
parent159979fca5aee2ebfedacf2ad904e542761043cc (diff)
downloadmiasm-6df8da744777a55ff6979bc7dc4a5fee20c8f5c0.tar.gz
miasm-6df8da744777a55ff6979bc7dc4a5fee20c8f5c0.zip
Merge pull request #204 from carolineLe/dependency_graph
Dependency graph
Diffstat (limited to 'test/test_all.py')
-rw-r--r--test/test_all.py31
1 files changed, 15 insertions, 16 deletions
diff --git a/test/test_all.py b/test/test_all.py
index 55e69e70..b5dc0abf 100644
--- a/test/test_all.py
+++ b/test/test_all.py
@@ -135,22 +135,21 @@ for script in ["win_api_x86_32.py",
 
 ## Analysis
 testset += RegressionTest(["depgraph.py"], base_dir="analysis",
-                          products=["graph_test_01_00.dot",
-                                    "graph_test_02_00.dot",
-                                    "graph_test_03_00.dot",
-                                    "graph_test_03_01.dot",
-                                    "graph_test_04_00.dot",
-                                    "graph_test_05_00.dot",
-                                    "graph_test_06_00.dot",
-                                    "graph_test_07_00.dot",
-                                    "graph_test_08_00.dot",
-                                    "graph_test_08_01.dot",
-                                    "graph_test_09_00.dot",
-                                    "graph_test_09_01.dot",
-                                    "graph_test_10_00.dot",
-                                    "graph_test_11_00.dot",
-                                    ] + ["graph_%02d.dot" % test_nb
-                                         for test_nb in xrange(1, 12)])
+                          products=[fname for fnames in (
+                              ["graph_test_%02d_00.dot" % test_nb,
+                               "graph_%02d.dot" % test_nb]
+                              for test_nb in xrange(1, 17))
+                                    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"
+                       ])
 
 # Examples
 class Example(Test):