mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
d7a804d120
Some tests pipe the stdout and stderr of the compiler or assembler into a file and compare the result with a reference. This has the subtle problem that both stdout and stderr and buffered i/o streams that may or may not work the same on different OSs or even shells. That means the order of the lines in the resulting file is not guaranteed. In practise it is "mostly" not an issue, but "we" still stumbled about one test where different behaviour can be triggered depending on running it in cmd.exe or bash (msys): test/asm/listing output of 010-paramcount.bin differs from the reference output when running the test from cmd.exe. The solution is most likely to have two reference files and not redirect into one file. This patch fixes the issue (cf. #1912) for the directory test/asm/.
10 lines
468 B
Plaintext
10 lines
468 B
Plaintext
010-paramcount.s:18: Warning: User warning: r1 is blank!
|
|
010-paramcount.s:14: Note: Macro was defined here
|
|
010-paramcount.s:8: Note: Macro was defined here
|
|
010-paramcount.s:19: Warning: User warning: r1 is blank!
|
|
010-paramcount.s:14: Note: Macro was defined here
|
|
010-paramcount.s:8: Note: Macro was defined here
|
|
010-paramcount.s:20: Warning: User warning: r1 is blank!
|
|
010-paramcount.s:14: Note: Macro was defined here
|
|
010-paramcount.s:8: Note: Macro was defined here
|