Skip to content

Latest commit

 

History

History

README.md

Build and test instructions

The binaries are now build by https://github.com/Vector35/debugger-test-binaries/actions.

The debugger test binaries are now built by CMake. If you wish to run the unit test, there is no need to build these binaries. One only needs to build it when there are changes to the binaries.

Run unit tests

cd test
python3 debugger_test.py

macOS

  • arm64
cd test
cmake -DARCH=arm64 .
make

Build results are in binaries/Darwin-arm64.

  • x86_64
cd test
cmake -DARCH=x86_64 .
make

Build results are in binaries/Darwin-x86_64.

Linux

  • x86_64
cd test
cmake -DARCH=x86_64 .
make

Build results are in binaries/Linux-x86_64.

  • x86
cd test
cmake -DARCH=x86 .
make

Build results are in binaries/Linux-x86.

Windows

  • x86_64

Open x64 Visual Studio command prompt

cd test
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DARCH=x86_64 .
nmake
  • x86 Open x86 Visual Studio command prompt
cd test
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DARCH=x86 .
nmake