diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-04-06 14:36:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-06 14:36:01 +0200 |
| commit | 049abdc867f533ba270cbdfff839caefb9b162b9 (patch) | |
| tree | 419067643408bed0acc81529791f714150ddf644 /test/test_all.py | |
| parent | b1ed94019554b25d4d8924594f8868318e8a8c4a (diff) | |
| parent | b535f6e26e354ca61307f8153b862385ba9d2a04 (diff) | |
| download | miasm-049abdc867f533ba270cbdfff839caefb9b162b9.tar.gz miasm-049abdc867f533ba270cbdfff839caefb9b162b9.zip | |
Merge pull request #515 from commial/feature/calling-conv-systemv
Feature/calling conv systemv
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x | test/test_all.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/test_all.py b/test/test_all.py index 0a29d4d3..f76019c4 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -257,6 +257,12 @@ for script in ["win_api_x86_32.py", ]: testset += RegressionTest([script], base_dir="os_dep", tags=[TAGS['tcc']]) +for arch in ["x86_32", "x86_64", "arml", "aarch64l"]: + testset += RegressionTest(["test_env.py", arch, "test_env.%s" % arch, "-c", + "arg1", "-c", "arg2", "--environment-vars", + "TEST=TOTO", "--mimic-env"], + base_dir="os_dep/linux", tags=[TAGS['tcc']]) + ## Analysis testset += RegressionTest(["depgraph.py"], base_dir="analysis", products=[fname for fnames in ( @@ -608,7 +614,7 @@ for jitter in ExampleJitter.jitter_engines: tags=tags.get(jitter, [])) for script, dep in [(["x86_32.py", Example.get_sample("x86_32_sc.bin")], []), - (["arm.py", Example.get_sample("md5_arm"), "-a", "A684"], + (["arm.py", Example.get_sample("md5_arm"), "--mimic-env"], []), (["sandbox_elf_aarch64l.py", Example.get_sample("md5_aarch64l"), "-a", "0x400A00"], []), @@ -620,6 +626,7 @@ for script, dep in [(["x86_32.py", Example.get_sample("x86_32_sc.bin")], []), "b", "-a", "0"], [test_armb]), (["arm_sc.py", "0", Example.get_sample("demo_arm_l.bin"), "l", "-a", "0"], [test_arml]), + (["sandbox_call.py", Example.get_sample("md5_arm")], []), ] + [(["sandbox_pe_x86_32.py", Example.get_sample("x86_32_" + name + ".bin")], [test_box[name]]) |