aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorEdvard Thörnros <edvard.thornros@gmail.com>2021-02-01 21:57:54 +0100
committerEdvard Thörnros <edvard.thornros@gmail.com>2021-02-01 21:57:54 +0100
commit5b9de776ba7de654fa92bee7c38fb30d7929405d (patch)
tree9326e2f44b56f050df229eef331a3ab6248ebbdb /src/main.rs
parentf9b6a64b845dabdf1773da49f248def479659934 (diff)
downloadsylt-5b9de776ba7de654fa92bee7c38fb30d7929405d.tar.gz
.tdy -> .sy and tests -> progs/tests
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 37ae256..bc68d40 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -9,7 +9,7 @@ struct Args {
fn main() {
let args = parse_args();
- let file = args.file.unwrap_or_else(|| Path::new("tests/simple.tdy").to_owned());
+ let file = args.file.unwrap_or_else(|| Path::new("progs/tests/simple.sy").to_owned());
let errs = match run_file(&file, args.print, vec![(String::from("extern_test"), extern_test)]) {
Err(it) => it,
_ => return,