Files
RedBear-OS/recipes/dev/python312/source/Modules/_decimal/tests/runall.bat
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

130 lines
3.6 KiB
Batchfile
Executable File

@ECHO OFF
rem Test all machine configurations, pydebug, refleaks, release build.
cd ..\..\..\
echo.
echo # ======================================================================
echo # Building Python (Debug^|x64)
echo # ======================================================================
echo.
call .\Tools\buildbot\clean.bat
call .\Tools\buildbot\build.bat -c Debug -p x64
echo.
echo # ======================================================================
echo # platform=Debug^|x64
echo # ======================================================================
echo.
echo # ==================== refleak tests =======================
echo.
call python.bat -m test -uall -R 3:3 test_decimal
echo.
echo.
echo # ==================== regular tests =======================
echo.
call python.bat -m test -uall test_decimal
echo.
echo.
echo # ==================== deccheck =======================
echo.
call python.bat .\Modules\_decimal\tests\deccheck.py
echo.
echo.
echo.
echo # ======================================================================
echo # Building Python (Release^|x64)
echo # ======================================================================
echo.
call .\Tools\buildbot\clean.bat
call .\Tools\buildbot\build.bat -c Release -p x64
echo.
echo # ======================================================================
echo # platform=Release^|x64
echo # ======================================================================
echo.
echo # ==================== regular tests =======================
echo.
call python.bat -m test -uall test_decimal
echo.
echo.
echo # ==================== deccheck =======================
echo.
call python.bat .\Modules\_decimal\tests\deccheck.py
echo.
echo.
echo.
echo # ======================================================================
echo # Building Python (Debug^|Win32)
echo # ======================================================================
echo.
call .\Tools\buildbot\clean.bat
call Tools\buildbot\build.bat -c Debug -p Win32
echo.
echo # ======================================================================
echo # platform=Debug^|Win32
echo # ======================================================================
echo.
echo # ==================== refleak tests =======================
echo.
call python.bat -m test -uall -R 3:3 test_decimal
echo.
echo.
echo # ==================== regular tests =======================
echo.
call python.bat -m test -uall test_decimal
echo.
echo.
echo # ==================== deccheck =======================
echo.
call python.bat .\Modules\_decimal\tests\deccheck.py
echo.
echo.
echo.
echo # ======================================================================
echo # Building Python (Release^|Win32)
echo # ======================================================================
echo.
call .\Tools\buildbot\clean.bat
call .\Tools\buildbot\build.bat -c Release -p Win32
echo.
echo # ======================================================================
echo # platform=Release^|Win32
echo # ======================================================================
echo.
echo # ==================== regular tests =======================
echo.
call python.bat -m test -uall test_decimal
echo.
echo.
echo # ==================== deccheck =======================
echo.
call python.bat .\Modules\_decimal\tests\deccheck.py
echo.
echo.