From be37a460902302af40cc2f14f6152f40387bbd0f Mon Sep 17 00:00:00 2001 From: Cruel Date: Thu, 6 Feb 2014 23:32:54 -0500 Subject: [PATCH] Pthread lib apparently needed for gtest --- test/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run.sh b/test/run.sh index 13e1fee..e697c8b 100755 --- a/test/run.sh +++ b/test/run.sh @@ -1,5 +1,5 @@ echo "Compiling unit tests..." -g++ main.cpp -lgtest -o test +g++ main.cpp -lgtest -lpthread -o test echo "Running unit tests..." ./test -v result=$?