diff options
| author | Ajax <commial@gmail.com> | 2018-12-20 16:04:54 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-12-20 16:06:07 +0100 |
| commit | bff40462030dc01ee651595370479619e15500d2 (patch) | |
| tree | 1365005917ed29b54947ef1148d62e0d100f5351 /test/test_all.py | |
| parent | e59aedc0c65801106b48d51d4ac91630871c6ff3 (diff) | |
| download | miasm-bff40462030dc01ee651595370479619e15500d2.tar.gz miasm-bff40462030dc01ee651595370479619e15500d2.zip | |
Add export_llvm, an example illustrating basic IR export
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x | test/test_all.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index 42843e90..2dd56cef 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -664,6 +664,9 @@ testset += ExampleExpression(["expr_c.py"], testset += ExampleExpression(["constant_propagation.py", Example.get_sample("simple_test.bin"), "-s", "0"], products=["%s.propag.dot" % Example.get_sample("simple_test.bin")]) +testset += ExampleExpression(["export_llvm.py", "-a", "x86_32", Example.get_sample("simple_test.bin"), "0"], + products=["out.ll"]) + for script in [["basic_op.py"], ["basic_simplification.py"], |