diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-02-20 23:20:12 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-02-20 23:20:12 +0100 |
| commit | f8e5ad9e5a7663451b01f67094e70e530d78e205 (patch) | |
| tree | 5ad2b027928fefd987c1b6b94900feec8f4c1be8 /test/test_all.py | |
| parent | 1db45ff969a41d0576cf00f00f7b59e1bb332de2 (diff) | |
| parent | d1a564fa53762961d9f54d24d9cea64f3eb84ff6 (diff) | |
| download | miasm-f8e5ad9e5a7663451b01f67094e70e530d78e205.tar.gz miasm-f8e5ad9e5a7663451b01f67094e70e530d78e205.zip | |
Merge pull request #82 from commial/feature-depgraph
Feature: dependency graphs
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | test/test_all.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index 1e5de442..0ecc677f 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -121,6 +121,25 @@ for script in ["win_api_x86_32.py", ]: testset += RegressionTest([script], base_dir="os_dep") +## Analysis +testset += RegressionTest(["depgraph.py"], base_dir="analysis", + products=["graph_test_01_00.dot", + "graph_test_02_00.dot", + "graph_test_02_01.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_%02d.dot" % test_nb + for test_nb in xrange(1, 11)]) + # Examples class Example(Test): """Examples specificities: |