diff options
| author | Ajax <commial@gmail.com> | 2016-09-20 17:52:47 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2016-09-20 17:52:47 +0200 |
| commit | 5bf2f27911371763364b3d96d817416abd5cfe89 (patch) | |
| tree | 0b2f0972054cdaa509ac83095913a0c66db2a468 /test/test_all.py | |
| parent | 87e54bf72bead0ff71d7c2a5f9461ff96eb49e9b (diff) | |
| download | miasm-5bf2f27911371763364b3d96d817416abd5cfe89.tar.gz miasm-5bf2f27911371763364b3d96d817416abd5cfe89.zip | |
Fix cleanning error for depgraph tests
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | test/test_all.py | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/test/test_all.py b/test/test_all.py index 7b878c89..62f1cd4b 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -259,19 +259,16 @@ 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] + - [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]) + ["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)) + ]) + ## Degraph class TestDepgraph(RegressionTest): |