diff options
author | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-01-24 16:04:07 +0100 |
---|---|---|
committer | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-01-24 17:48:33 +0100 |
commit | dcca150f838ebc31b6fc0ec750cc0da1ef01f837 (patch) | |
tree | 4c861e96fa50fae99438a41c7d33ed9830006aed /tests/tcg/mips/mipsr5900 | |
parent | 5e0aa63b084d6a99bbb74cfc5ad9852f7746f469 (diff) |
tests: tcg: mips: Remove old directories
Remove old test directories.
Reviewed-by: Aleksandar Rikalo <arikalo@wavecomp.com>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Diffstat (limited to 'tests/tcg/mips/mipsr5900')
-rw-r--r-- | tests/tcg/mips/mipsr5900/Makefile | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/tcg/mips/mipsr5900/Makefile b/tests/tcg/mips/mipsr5900/Makefile deleted file mode 100644 index 27ee5d5f54..0000000000 --- a/tests/tcg/mips/mipsr5900/Makefile +++ /dev/null @@ -1,32 +0,0 @@ --include ../../config-host.mak - -CROSS=mipsr5900el-unknown-linux-gnu- - -SIM=qemu-mipsel -SIM_FLAGS=-cpu R5900 - -CC = $(CROSS)gcc -CFLAGS = -Wall -mabi=32 -march=r5900 -static - -TESTCASES = div1.tst -TESTCASES += divu1.tst -TESTCASES += madd.tst -TESTCASES += maddu.tst -TESTCASES += mflohi1.tst -TESTCASES += mtlohi1.tst -TESTCASES += mult.tst -TESTCASES += multu.tst - -all: $(TESTCASES) - -%.tst: %.c - $(CC) $(CFLAGS) $< -o $@ - -check: $(TESTCASES) - @for case in $(TESTCASES); do \ - echo $(SIM) $(SIM_FLAGS) ./$$case;\ - $(SIM) $(SIM_FLAGS) ./$$case; \ - done - -clean: - $(RM) -rf $(TESTCASES) |