From 4d11c61e9c24839d1872533a331572be6ef1e325 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Fri, 24 Jul 2026 09:18:11 -0700 Subject: [PATCH 1/2] recipes/recipes_emscripten/gap/recipe.yaml: Add runtime tests --- recipes/recipes_emscripten/gap/recipe.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipes/recipes_emscripten/gap/recipe.yaml b/recipes/recipes_emscripten/gap/recipe.yaml index c7aa4bb3a3d..58db3b01df0 100644 --- a/recipes/recipes_emscripten/gap/recipe.yaml +++ b/recipes/recipes_emscripten/gap/recipe.yaml @@ -33,6 +33,9 @@ tests: - include/gap/gap.h - bin/gap.js - bin/gap.wasm +- script: + - node $PREFIX/bin/gap --version + - node $PREFIX/bin/gap -c 'quit;' about: homepage: https://www.gap-system.org/ From 2ea0bb4fc48d15508033505777ff93c2959183b8 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Fri, 24 Jul 2026 09:27:49 -0700 Subject: [PATCH 2/2] recipes/recipes_emscripten/gap/recipe.yaml: Use gap.js for runtime tests --- recipes/recipes_emscripten/gap/recipe.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/recipes_emscripten/gap/recipe.yaml b/recipes/recipes_emscripten/gap/recipe.yaml index 58db3b01df0..2c26bfd29be 100644 --- a/recipes/recipes_emscripten/gap/recipe.yaml +++ b/recipes/recipes_emscripten/gap/recipe.yaml @@ -34,8 +34,8 @@ tests: - bin/gap.js - bin/gap.wasm - script: - - node $PREFIX/bin/gap --version - - node $PREFIX/bin/gap -c 'quit;' + - node $PREFIX/bin/gap.js --version + - node $PREFIX/bin/gap.js -c 'quit;' about: homepage: https://www.gap-system.org/