Qucs / qucs-test

Qucs Project test suite and scripts repository
5 stars 14 forks source link

Enable running qucs-test using the Windows python #14

Closed in3otd closed 8 years ago

in3otd commented 8 years ago

some small modifications to be able to run qucs-test using the Windows python (from the cmd shell)

I took the easiest route, disabling multiprocessing on Windows, as it is quite difficult to make it work properly (tried a little, but did not get much far). See, e.g. http://stackoverflow.com/questions/9670926/multiprocessing-on-windows-breaks We do not use multiprocessing for testing on AppVeyor anyway...

With these modifications, I just need to add the mingw64 libraries to the path,

set PATH=%PATH%;c:\msys64\mingw64\bin

and then I can run the tests as usual

C:\tmp\qucs-test>python run.py --prefix /msys64/usr/local/bin --qucsator --exclude skip.txt

note that I have some NUM_FAIL on Win, but this is another story...