blob: a53b00abfcb115363e2e66bc7b94b2871455d9e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//! This file is generated by running `bash test-cases/generate.sh` - do not manually adjust.
mod common;
#[test]
fn fun0() {
common::test_case("fun0", include_bytes!("../test-cases/fun0/script.sh"), include_bytes!("../test-cases/fun0/stdout.txt"));
}
#[test]
fn semicolon() {
common::test_case("semicolon", include_bytes!("../test-cases/semicolon/script.sh"), include_bytes!("../test-cases/semicolon/stdout.txt"));
}
#[test]
fn variables() {
common::test_case("variables", include_bytes!("../test-cases/variables/script.sh"), include_bytes!("../test-cases/variables/stdout.txt"));
}
|