Skip to content

Commit b60aac6

Browse files
committed
cmake: note ROOTEXE_OPTS in ROOTTEST_ADD_TEST doc
1 parent 3ff58aa commit b60aac6

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

cmake/modules/RootMacros.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2834,6 +2834,7 @@ endmacro(ROOTTEST_SETUP_EXECTEST)
28342834
# function ROOTTEST_ADD_TEST(testname
28352835
# MACRO|EXEC macro_or_command
28362836
# [MACROARG args1 arg2 ...]
2837+
# [ROOTEXE_OPTS opt1 opt2 ...]
28372838
# [INPUT infile]
28382839
# [ENABLE_IF root-feature]
28392840
# [DISABLE_IF root-feature]

roottest/cling/stl/map/testing.h

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
#include <map>
44

55
typedef std::map<int, int> nmap;
6-
typedef std::map<int, nmap > runnmap;
6+
typedef std::map<int, nmap> runnmap;
77

88
class test {
9-
public:
10-
test() {};
11-
~test() {};
12-
private:
13-
runnmap _lbn;
9+
public:
10+
test(){};
11+
~test(){};
12+
13+
private:
14+
runnmap _lbn;
1415
};
1516

0 commit comments

Comments
 (0)