aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test.mk4
-rw-r--r--tests/test.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/test.mk b/tests/test.mk
index c05a72b..cc318df 100644
--- a/tests/test.mk
+++ b/tests/test.mk
@@ -27,10 +27,10 @@ $$(info $$(OBJ_$(1)))
all:: $$(O)/$(1)
$$(O)/$(1): $$(OBJ_$(1))
- $$(MIPS_PREFIX)-gcc $$(MIPS_LDFLAGS) -o $$@ $$^
+ $$(MIPS_PREFIX)gcc $$(MIPS_LDFLAGS) -o $$@ $$^
$$(OBJ_$(1)): $$(O)/%.o: %.S
- $$(MIPS_PREFIX)-gcc $$(MIPS_CFLAGS) -c -x assembler-with-cpp -o $$@ $$<
+ $$(MIPS_PREFIX)gcc $$(MIPS_CFLAGS) -c -x assembler-with-cpp -o $$@ $$<
clean::
$(RM) $$(OBJ_$(1))
diff --git a/tests/test.sh b/tests/test.sh
index 34b42e3..d04d380 100644
--- a/tests/test.sh
+++ b/tests/test.sh
@@ -97,5 +97,5 @@ mips_compiler() {
mips_make_test() {
mips_compiler
mkdir -p "$TEST_DIR"
- PATH="$PATH:$MIPS_COMPILER/bin" make -C "$TEST_SRC" O="$TEST_DIR" MIPS_PREFIX="mips-qtmips-elf" "$@"
+ PATH="$PATH:$MIPS_COMPILER/bin" make -C "$TEST_SRC" O="$TEST_DIR" MIPS_PREFIX="mips-qtmips-elf-" "$@"
}