blob: 0917838abbc2b6e256f99d99c50f6b042ee377c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package odinfmt_tests
import "core:os"
import "core:mem"
import "snapshot"
main :: proc() {
init_global_temporary_allocator(mem.Megabyte * 100)
if !snapshot.snapshot_directory("tests") {
os.exit(1)
}
}
|