summaryrefslogtreecommitdiff
path: root/tests/test_random.bash
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2024-10-04 00:06:46 +0300
committerOxore <oxore@protonmail.com>2024-11-21 00:18:24 +0300
commit220e905af625ca8e433249e2cb74dfbaa2d252c3 (patch)
treea53b02b0c13eb8f693172083b94879a2d71a24b6 /tests/test_random.bash
parent559139fce64d685708c283397033bf152afd00a3 (diff)
Add Sierra ASM68 supportsierra-support
Diffstat (limited to 'tests/test_random.bash')
-rw-r--r--tests/test_random.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_random.bash b/tests/test_random.bash
index 3c7a0d2..60e66a0 100644
--- a/tests/test_random.bash
+++ b/tests/test_random.bash
@@ -30,7 +30,7 @@ run_test_random() {
echo -ne "Test random, pass ${pass_number}... "
dd if=/dev/urandom of=${file_orig_bin} bs=1024 count=${blocks_count} >/dev/null 2>&1
${DISASM} -o ${file_asm} ${file_orig_bin}
- ${AS} -o ${file_as_o} ${file_asm}
+ ${AS} -m68000 -o ${file_as_o} ${file_asm}
${LD} -o ${file_as_elf} ${file_as_o}
${OBJCOPY} ${file_as_elf} -O binary ${file_as_bin}
if ! cmp ${file_orig_bin} ${file_as_bin}; then