1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-09 23:58:23 -05:00
denoland-deno/tests/specs/compile/determinism/__test__.jsonc

32 lines
801 B
Text
Raw Normal View History

{
"tempDir": true,
"steps": [{
"args": "run -A setup.ts",
"output": "[WILDCARD]"
}, {
"if": "unix",
"args": "compile --no-config --output a/main a/main.ts",
"output": "[WILDCARD]"
}, {
"if": "unix",
"args": "compile --no-config --output b/main b/main.ts",
"output": "[WILDCARD]"
}, {
"if": "unix",
"args": "run --allow-read=. assert_equal.ts a/main b/main",
"output": "Same\n"
}, {
"if": "windows",
"args": "compile --no-config --output a/main.exe a/main.ts",
"output": "[WILDCARD]"
}, {
"if": "windows",
"args": "compile --no-config --output b/main.exe b/main.ts",
"output": "[WILDCARD]"
}, {
"if": "windows",
"args": "run --allow-read=. assert_equal.ts a/main.exe b/main.exe",
"output": "Same\n"
}]
}