Home
last modified time | relevance | path

Searched refs:expect (Results 1 – 1 of 1) sorted by relevance

/bootable/recovery/edify/
Dmain.c26 int expect(const char* expr_str, const char* expected, int* errors) { in expect() function
76 expect("a", "a", &errors); in test()
77 expect("\"a\"", "a", &errors); in test()
78 expect("\"\\x61\"", "a", &errors); in test()
79 expect("# this is a comment\n" in test()
86 expect("a; b; c", "c", &errors); in test()
89 expect("a + b", "ab", &errors); in test()
90 expect("a + \n \"b\"", "ab", &errors); in test()
91 expect("a + b +\nc\n", "abc", &errors); in test()
94 expect("concat(a, b)", "ab", &errors); in test()
[all …]