Remove calling convention on FunctionRunner test

For this test to run on Windows, the explicit calling convention
must be removed so that the parser is free to use the host's
calling convention.
This commit is contained in:
Andrew Brown
2019-08-27 13:23:55 -07:00
committed by Benjamin Bouvier
parent 6fdc69ff2e
commit 9612c71fbd

View File

@@ -99,7 +99,9 @@ mod test {
#[test] #[test]
fn nop() { fn nop() {
let code = String::from( let code = String::from(
"function %test() -> b8 system_v { "
test run
function %test() -> b8 {
ebb0: ebb0:
nop nop
v1 = bconst.b8 true v1 = bconst.b8 true