mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
58022571ba
* yeet * git subrepo clone git@github.com:simonlindholm/asm-processor.git tools/asm-processor subrepo: subdir: "tools/asm-processor" merged: "bbd86ea1f" upstream: origin: "git@github.com:simonlindholm/asm-processor.git" branch: "main" commit: "bbd86ea1f" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
7 lines
216 B
Bash
Executable File
7 lines
216 B
Bash
Executable File
#!/usr/bin/env bash
|
|
for A in tests/*.c tests/*.p; do
|
|
OBJDUMPFLAGS=-srt
|
|
echo $A
|
|
./compile-test.sh "$A" && mips-linux-gnu-objdump $OBJDUMPFLAGS "${A%.*}.o" | diff - "${A%.*}.objdump" || echo FAIL "$A"
|
|
done
|