Skip to content

Commit cb8fc47

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

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
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 & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
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

8-
class test {
9-
public:
10-
test() {};
11-
~test() {};
12-
private:
13-
runnmap _lbn;
8+
public:
9+
test(){};
10+
~test(){};
11+
12+
private:
13+
runnmap _lbn;
1414
};
1515

0 commit comments

Comments
 (0)