Add a spec testsuite submodule.

This commit is contained in:
Dan Gohman
2018-12-03 05:53:07 -08:00
parent 04b7f0c0df
commit e06b99b165
3 changed files with 56 additions and 21 deletions

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "lib/wast/spec_testsuite"]
path = lib/wast/spec_testsuite
url = https://github.com/WebAssembly/testsuite

View File

@@ -9,44 +9,63 @@ fn main() {
let mut out = let mut out =
File::create(out_dir.join("run_wast_files.rs")).expect("error creating run_wast_files.rs"); File::create(out_dir.join("run_wast_files.rs")).expect("error creating run_wast_files.rs");
let mut paths: Vec<_> = read_dir("spec_testsuite") test_directory(&mut out, "misc_testsuite");
test_directory(&mut out, "spec_testsuite");
}
fn test_directory(out: &mut File, testsuite: &str) {
let mut dir_entries: Vec<_> = read_dir(testsuite)
.unwrap() .unwrap()
.map(|r| r.unwrap()) .map(|r| r.unwrap())
.filter(|p| { .filter(|dir_entry| {
// Ignore files starting with `.`, which could be editor temporary files let p = dir_entry.path();
if let Some(stem) = p.path().file_stem() { if let Some(ext) = p.extension() {
if let Some(stemstr) = stem.to_str() { // Only look at wast files.
return !stemstr.starts_with('.'); if ext == "wast" {
// Ignore files starting with `.`, which could be editor temporary files
if let Some(stem) = p.file_stem() {
if let Some(stemstr) = stem.to_str() {
if !stemstr.starts_with('.') {
return true;
}
}
}
} }
} }
false false
}).collect(); }).collect();
paths.sort_by_key(|dir| dir.path()); dir_entries.sort_by_key(|dir| dir.path());
for path in paths {
let path = path.path(); writeln!(out, "mod {} {{", testsuite);
writeln!(out, "#[test]"); writeln!(out, " use super::{{native_isa, wast_file, Path}};");
for dir_entry in dir_entries {
let path = dir_entry.path();
let stemstr = path
.file_stem()
.expect("file_stem")
.to_str()
.expect("to_str");
writeln!(out, " #[test]");
if ignore(testsuite, stemstr) {
writeln!(out, " #[ignore]");
}
writeln!( writeln!(
out, out,
"fn {}() {{", " fn {}() {{",
avoid_keywords( avoid_keywords(&stemstr.replace("-", "_"))
&path
.file_stem()
.expect("file_stem")
.to_str()
.expect("to_str")
.replace("-", "_")
)
); );
writeln!( writeln!(
out, out,
" wast_file(Path::new(\"{}\"), &*native_isa()).expect(\"error loading wast file {}\");", " wast_file(Path::new(\"{}\"), &*native_isa()).expect(\"error loading wast file {}\");",
path.display(), path.display(),
path.display() path.display()
); );
writeln!(out, "}}"); writeln!(out, " }}");
writeln!(out); writeln!(out);
} }
writeln!(out, "}}");
} }
fn avoid_keywords(name: &str) -> &str { fn avoid_keywords(name: &str) -> &str {
@@ -59,3 +78,15 @@ fn avoid_keywords(name: &str) -> &str {
other => other, other => other,
} }
} }
fn ignore(testsuite: &str, name: &str) -> bool {
match testsuite {
"spec_testsuite" => match name {
// These are the remaining spec testsuite failures.
"call_indirect" | "data" | "elem" | "exports" | "func" | "func_ptrs" | "globals"
| "imports" | "linking" | "names" | "start" => true,
_ => false,
},
_ => false,
}
}