diff options
author | Gaius Mulley <gaiusmod2@gmail.com> | 2023-02-25 22:12:23 +0000 |
---|---|---|
committer | Gaius Mulley <gaiusmod2@gmail.com> | 2023-02-25 22:12:23 +0000 |
commit | 3dd348d0530c621cc6c851e3cf03a7def69c8baa (patch) | |
tree | 5f5c0ed2c4172fdbd09e9502e7a5f57ff7359376 | |
parent | a553fc879f9229ffd8a5af65255f41605f885666 (diff) | |
download | gcc-3dd348d0530c621cc6c851e3cf03a7def69c8baa.zip gcc-3dd348d0530c621cc6c851e3cf03a7def69c8baa.tar.gz gcc-3dd348d0530c621cc6c851e3cf03a7def69c8baa.tar.bz2 |
Disable tower socket runtest (gm2-simple-execute).
The projects-pim-run-pass-tower.exp test blocks indefinitely
on some platforms. This patch disables it for now - it should
be enabled once a cross platform fix for RTint.mod is found.
Even disable the trivial execution test.
gcc/testsuite/ChangeLog:
* gm2/projects/pim/run/pass/tower/projects-pim-run-pass-tower.exp:
Also add conditional to gm2-simple-execute.
Signed-off-by: Gaius Mulley <gaiusmod2@gmail.com>
-rw-r--r-- | gcc/testsuite/gm2/projects/pim/run/pass/tower/projects-pim-run-pass-tower.exp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/testsuite/gm2/projects/pim/run/pass/tower/projects-pim-run-pass-tower.exp b/gcc/testsuite/gm2/projects/pim/run/pass/tower/projects-pim-run-pass-tower.exp index 927dbc5..eee097c 100644 --- a/gcc/testsuite/gm2/projects/pim/run/pass/tower/projects-pim-run-pass-tower.exp +++ b/gcc/testsuite/gm2/projects/pim/run/pass/tower/projects-pim-run-pass-tower.exp @@ -100,8 +100,11 @@ foreach testcase [lsort [glob -nocomplain $srcdir/$subdir/Dungeon.mod]] { continue } set gm2_keep_executable 1 - # gm2-torture-execute $testcase "" "pass" - gm2-simple-execute $testcase "" "" + if { ${gm2_run_tower_test} } then { + gm2-simple-execute $testcase "" "" + } else { + verbose "not running simple tower execute test (with no map)" 1 + } set gm2_keep_executable 0 global tmpdir; |