testrig04.bat 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. @rem
  2. @rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
  3. @rem All rights reserved.
  4. @rem This component and the accompanying materials are made available
  5. @rem under the terms of the License "Eclipse Public License v1.0"
  6. @rem which accompanies this distribution, and is available
  7. @rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
  8. @rem
  9. @rem Initial Contributors:
  10. @rem Nokia Corporation - initial contribution.
  11. @rem
  12. @rem Contributors:
  13. @rem
  14. @rem Description:
  15. @rem
  16. ECHO junk_file: this file is the dummy file to be used in the cp-testing. > junk_file
  17. SET SBS_HOME=D:\danieljacobs\msystest\raptor
  18. SET PATH=%SBS_HOME%\win32\mingw\bin;%SBS_HOME%\win32\msys\bin;%PATH%
  19. @REM Generate the makefiles using case "all" ...
  20. FOR %%c IN (all env echo cp sed) DO (
  21. FOR %%i IN (100 750 1500 1750 2500) DO (
  22. FOR %%d in (50 100) DO (
  23. python makemakefile.py -t %%i -d %%d -c %%c -m makefile_%%c_%%i_targets_%%d_divisions.mk)))
  24. @REM Run mingw32-make with various values of j
  25. FOR %%j in (10 25 50 75 100 250) DO (
  26. FOR %%c IN (all env echo cp sed) DO (
  27. FOR %%i IN (100 750 1500 1750 2500) DO (
  28. FOR %%d in (50 100) DO (
  29. make -j %%j -f makefile_%%c_%%i_targets_%%d_divisions.mk > makefile_%%c_%%i_targets_%%d_divisions_jobs_%%j.log 2>&1))))