diff options
| author | Yuta Saito <kateinoigakukun@gmail.com> | 2024-05-04 20:41:16 +0000 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2024-05-07 05:36:35 +0000 |
| commit | 80adf6a18c653e25a0448110e6978a9d0764eba7 (patch) | |
| tree | 9bba5cfd66b0a95aa5ce0eadd4641004fcbb82ee /test | |
| parent | 7c8903d014e12bd80a35804affa029028c9f48cc (diff) | |
[rubygems/rubygems] Accept WASI as an OS name in Gem::Platform
https://github.com/rubygems/rubygems/commit/1209d3c6b0
Diffstat (limited to 'test')
| -rw-r--r-- | test/rubygems/test_gem_platform.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/rubygems/test_gem_platform.rb b/test/rubygems/test_gem_platform.rb index e4bf882317..00e48498c6 100644 --- a/test/rubygems/test_gem_platform.rb +++ b/test/rubygems/test_gem_platform.rb @@ -145,6 +145,9 @@ class TestGemPlatform < Gem::TestCase "x86_64-openbsd3.9" => ["x86_64", "openbsd", "3.9"], "x86_64-openbsd4.0" => ["x86_64", "openbsd", "4.0"], "x86_64-openbsd" => ["x86_64", "openbsd", nil], + "wasm32-wasi" => ["wasm32", "wasi", nil], + "wasm32-wasip1" => ["wasm32", "wasi", nil], + "wasm32-wasip2" => ["wasm32", "wasi", nil], } test_cases.each do |arch, expected| |
