-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.test
27 lines (21 loc) · 803 Bytes
/
.env.test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# If 1 the first failing test will stop the test execution,
# if 0 every single test will be executed.
GNL_ASSERT_BLOCK=0
# helpers library paths, needed by the test suites
HELPERS_LIB=./helpers/lib
HELPERS_INCLUDE=./helpers/include
# data structures library paths, needed by the main program
DATA_STRUCTURES_LIB=./data-structures/lib
DATA_STRUCTURES_INCLUDE=./data-structures/include
# server library paths
SERVER_LIB=./server/lib
SERVER_INCLUDE=./server/include
# message library paths
MESSAGE_LIB=./message/lib
MESSAGE_INCLUDE=./message/include
# socket library paths, needed by the server and the client library
SOCKET_LIB=./socket/lib
SOCKET_INCLUDE=./socket/include
# file system library paths, needed by the server
FILE_SYSTEM_LIB=./file-system/lib
FILE_SYSTEM_INCLUDE=./file-system/include