Skip to content
This repository was archived by the owner on Oct 3, 2025. It is now read-only.

Commit 716b763

Browse files
docs: tests
Signed-off-by: Henry Gressmann <[email protected]>
1 parent 51d0c63 commit 716b763

File tree

4 files changed

+69
-2
lines changed

4 files changed

+69
-2
lines changed

crates/tinywasm/tests/generate-charts.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,19 @@ fn generate_charts() -> Result<()> {
1111
return Ok(());
1212
}
1313

14-
// Create a line chart
1514
charts::create_progress_chart(
1615
std::path::Path::new("./tests/generated/mvp.csv"),
1716
std::path::Path::new("./tests/generated/progress-mvp.svg"),
1817
)?;
1918

2019
println!("created progress chart: ./tests/generated/progress-mvp.svg");
2120

21+
charts::create_progress_chart(
22+
std::path::Path::new("./tests/generated/2.0.csv"),
23+
std::path::Path::new("./tests/generated/progress-2.0.svg"),
24+
)?;
25+
26+
println!("created progress chart: ./tests/generated/progress-2.0.svg");
27+
2228
Ok(())
2329
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# WebAssembly 1.0 Test Results (out of 20254 tests)
2+
3+
![](./progress-mvp.svg)
4+
5+
# WebAssembly 2.0 Test Results (out of 27883 tests)
6+
7+
![](./progress-2.0.svg)
Lines changed: 54 additions & 0 deletions
Loading

crates/tinywasm/tests/generated/progress-mvp.svg

Lines changed: 1 addition & 1 deletion
Loading

0 commit comments

Comments
 (0)