diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-03-23 16:29:53 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-03-23 16:38:34 +0100 |
| commit | 8c436da764b0616976c74c43fefd5494d3889ebb (patch) | |
| tree | 0c77d019f6ed232bb4815791047ad98f2039edb6 /test | |
| parent | 359357f4c5609cded790c5890c0c0dd7a2cf73d6 (diff) | |
| download | miasm-8c436da764b0616976c74c43fefd5494d3889ebb.tar.gz miasm-8c436da764b0616976c74c43fefd5494d3889ebb.zip | |
Depgraph: use has_loop algorithm to spot data flow loops; fix reg test
Diffstat (limited to 'test')
| -rw-r--r-- | test/analysis/dg_test_06_expected.json | 2 | ||||
| -rw-r--r-- | test/analysis/dg_test_06_implicit_expected.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/analysis/dg_test_06_expected.json b/test/analysis/dg_test_06_expected.json index 7d823131..c181cd2d 100644 --- a/test/analysis/dg_test_06_expected.json +++ b/test/analysis/dg_test_06_expected.json @@ -1 +1 @@ -[{"EAX": "0x1", "has_loop": false}, {"EAX": "0x2", "has_loop": true}] +[{"EAX": "0x1", "has_loop": false}, {"EAX": "0x2", "has_loop": false}] diff --git a/test/analysis/dg_test_06_implicit_expected.json b/test/analysis/dg_test_06_implicit_expected.json index 050915c1..bda75296 100644 --- a/test/analysis/dg_test_06_implicit_expected.json +++ b/test/analysis/dg_test_06_implicit_expected.json @@ -1 +1 @@ -[{"has_loop": false, "EAX": "0x1", "satisfiability": true, "constraints": {"EAX_init": "0xffffffff"}}, {"has_loop": true, "EAX": "0x2", "satisfiability": false, "constraints": {}}] +[{"has_loop": false, "EAX": "0x1", "satisfiability": true, "constraints": {"EAX_init": "0xffffffff"}}, {"has_loop": false, "EAX": "0x2", "satisfiability": false, "constraints": {}}] |