Limit testsuite parallelism to number of tests (#10890)

This means that we never start more processes that we have tests
to run.  This was happening on my machine which would start 56
processes when I run just 2 tests.
2 files changed
tree: 789082ecca9ce8a7026e0a58c725c84e6c2ef8ae
  1. .circleci/
  2. .github/
  3. cmake/
  4. docs/
  5. media/
  6. site/
  7. src/
  8. system/
  9. tests/
  10. third_party/
  11. tools/
  12. .clang-format
  13. .editorconfig
  14. .flake8
  15. .gitattributes
  16. .gitignore
  17. .style.yapf
  18. AUTHORS
  19. ChangeLog.md
  20. CONTRIBUTING.md
  21. em++.bat
  22. em++.py
  23. em-config.bat
  24. em-config.py
  25. emar.bat
  26. emar.py
  27. embuilder.py
  28. emcc.bat
  29. emcc.py
  30. emcmake.bat
  31. emcmake.py
  32. emconfigure.bat
  33. emconfigure.py
  34. emlink.py
  35. emmake.bat
  36. emmake.py
  37. emranlib.bat
  38. emranlib.py
  39. emrun.bat
  40. emrun.py
  41. emscons.py
  42. emscripten-version.txt
  43. emscripten.py
  44. emsize.py
  45. LICENSE
  46. Makefile
  47. package-lock.json
  48. package.json
  49. README.md
README.md

emscripten logo

CircleCI

Main project page: http://emscripten.org

Overview

Emscripten compiles C and C++ to WebAssembly using LLVM and Binaryen. Emscripten output can run on the Web, in Node.js, and in wasm runtimes.

Emscripten provides Web support for popular portable APIs such as OpenGL and SDL2, allowing complex graphical native applications to be ported, such as the Unity game engine and Google Earth. It can probably port your codebase, too!

While Emscripten mostly focuses on compiling C and C++ using Clang, it can be integrated with other LLVM-using compilers (for example, Rust has Emscripten integration, with the wasm32-unknown-emscripten and asmjs-unknown-emscripten targets).

License

Emscripten is available under 2 licenses, the MIT license and the University of Illinois/NCSA Open Source License.

Both are permissive open source licenses, with little if any practical difference between them.

The reason for offering both is that (1) the MIT license is well-known, while (2) the University of Illinois/NCSA Open Source License allows Emscripten's code to be integrated upstream into LLVM, which uses that license, should the opportunity arise.

See LICENSE for the full content of the licenses.