Skip to content

Latest commit

 

History

History
25 lines (25 loc) · 453 Bytes

README.md

File metadata and controls

25 lines (25 loc) · 453 Bytes

HELLO

HAPPY CODING

Install library googletest

git clone git@github.com:google/googletest.git
cd googletest
cmake . && sudo make install

How to test all data structures

git submodule update --init
mkdir cmake-build-debug
cd cmake-build-debug/
cmake ..
make -j4 && ./Cplusplus_test

Test memory leak by valgrind

# Step 1: Install valgrind
sudo apt install valgrind
# Step 2:
cd cmake-build-debug/
cmake ..
make leak