diff options
author | Frank Ch. Eigler <fche@redhat.com> | 1998-03-14 01:51:03 +0000 |
---|---|---|
committer | Frank Ch. Eigler <fche@redhat.com> | 1998-03-14 01:51:03 +0000 |
commit | 86a60941332cd44e8fb2eb6fcba0d91a9deb44d1 (patch) | |
tree | 47a3104e6b2c229e854d680a8effe3c910760d3e /sim/testsuite/sky/Makefile.in | |
parent | 9614fb3c36f405345e72b93a10b4e5efb0ea6855 (diff) | |
download | gdb-86a60941332cd44e8fb2eb6fcba0d91a9deb44d1.zip gdb-86a60941332cd44e8fb2eb6fcba0d91a9deb44d1.tar.gz gdb-86a60941332cd44e8fb2eb6fcba0d91a9deb44d1.tar.bz2 |
* Added "test0" test bucket from SCEI. Due to changes in the behavior specs
of PKE, some old test cases had to be modified. There are suspected bugs
in the SCEI test cases too, so "make check" does not run cleanly at present.
* tss*.trc: New files, generated by perl script from
SCEI "test0" bucket.
* tsv*.trc: New files, generated by perl script from SCEI "test0"
bucket. Note that tsv432_0 may obsolete t-pke1.
* Makefile.in (TESTS): Run new scripts.
(check): Bulldoze through failing test cases with "make -k" until
SCEI fixes some of them.
(.run.ok): Increased run-time limit since some test runs can take
several seconds.
Diffstat (limited to 'sim/testsuite/sky/Makefile.in')
-rw-r--r-- | sim/testsuite/sky/Makefile.in | 43 |
1 files changed, 32 insertions, 11 deletions
diff --git a/sim/testsuite/sky/Makefile.in b/sim/testsuite/sky/Makefile.in index 838e682..eb50457 100644 --- a/sim/testsuite/sky/Makefile.in +++ b/sim/testsuite/sky/Makefile.in @@ -76,17 +76,38 @@ C_GEN = /build/sky-tools/c_gen.pl .SUFFIXES: .trc .c .run .ok .vif0out .vif0ok .vif0expect .vif1out .vif1ok .vif1expect .uu TESTS = \ - t-pke1.c \ - t-pke1.run \ t-pke1.vif0ok \ - t-pke2.c \ - t-pke2.run \ t-pke2.vif1ok \ - t-pke3.c \ - t-pke3.run \ - t-pke3.ok - -check: sanity $(TESTS) + t-pke3.ok \ + t-pke4.vif0ok \ + tss08_0.ok \ + tss08_1.ok \ + tss16_0.ok \ + tss16_1.ok \ + tss32_0.ok \ + tss32_1.ok \ + tsv208_0.ok \ + tsv208_1.ok \ + tsv216_0.ok \ + tsv216_1.ok \ + tsv232_0.ok \ + tsv232_1.ok \ + tsv308_0.ok \ + tsv308_1.ok \ + tsv316_0.ok \ + tsv316_1.ok \ + tsv332_0.ok \ + tsv332_1.ok \ + tsv408_0.ok \ + tsv408_1.ok \ + tsv416_0.ok \ + tsv416_1.ok \ + tsv432_0.ok \ + tsv432_1.ok + + +check: sanity + -$(MAKE) -k $(TESTS) sanity: @eval echo AS_FOR_TARGET = $(AS_FOR_TARGET) @eval echo LD_FOR_TARGET = $(LD_FOR_TARGET) @@ -98,12 +119,12 @@ sanity: .run.ok: rm -f tmp-$* $*.hi - ulimit -t 5 ; $(RUN_FOR_TARGET) $< > tmp-$* + ulimit -t 30 ; $(RUN_FOR_TARGET) $< > tmp-$* mv tmp-$* $*.ok .run.ko: rm -f tmp-$* $*.ko set +e ; \ - ulimit -t 5 ; $(RUN_FOR_TARGET) $< > tmp-$* ; \ + ulimit -t 30 ; $(RUN_FOR_TARGET) $< > tmp-$* ; \ if [ $$? -ne 0 ] ; then \ exit 0 ; \ else \ |