mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-22 19:21:39 +03:00
5e9a90bd97
* [ fix ] semantic highlighting in IDE mode Bring back (?) highlighting of goals * [ debug ] better logging: add length * [ test ] turns out lengths are not needed!
61 lines
1.8 KiB
Plaintext
Executable File
61 lines
1.8 KiB
Plaintext
Executable File
rm -rf build
|
|
|
|
rm -f output*
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < input1 > output1
|
|
diff expected1 output1 >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < input2 > output2
|
|
diff expected2 output2 >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < input3 > output3
|
|
diff expected3 output3 >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < input4 > output4
|
|
diff expected4 output4 >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < input5 > output5
|
|
diff expected5 output5 >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < input6 > output6
|
|
diff expected6 output6 >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < input7 > output7
|
|
diff expected7 output7 >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < input8 > output8
|
|
diff expected8 output8 >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < input9 > output9
|
|
diff expected9 output9 >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < inputA > outputA
|
|
diff expectedA outputA >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < inputB > outputB
|
|
diff expectedB outputB >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < inputC > outputC
|
|
diff expectedC outputC >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < inputD > outputD
|
|
diff expectedD outputD >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < inputE > outputE
|
|
diff expectedE outputE >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < inputF > outputF
|
|
diff expectedF outputF >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < inputG > outputG
|
|
diff expectedG outputG >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < inputH > outputH
|
|
diff expectedH outputH >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < inputI > outputI
|
|
diff expectedI outputI >> output
|
|
|
|
$1 --no-color --console-width 0 --ide-mode < inputJ > outputJ
|
|
diff expectedJ outputJ >> output
|