|
7 | 7 | CTEST_HBASE_DIR = os.path.join(APP_DIR, "ctest-hbase") |
8 | 8 | CTEST_ZOOKEEPER_DIR = os.path.join(APP_DIR, "ctest-zookeeper") |
9 | 9 | CTEST_ALLUXIO_DIR = os.path.join(APP_DIR, "ctest-alluxio") |
| 10 | +CTEST_JETTY_DIR = os.path.join(APP_DIR, "ctest-jetty") |
10 | 11 |
|
11 | 12 | MODULE_PATH = { |
12 | 13 | "hadoop-common": CTEST_HADOOP_DIR, |
13 | 14 | "hadoop-hdfs": CTEST_HADOOP_DIR, |
14 | 15 | "hbase-server": CTEST_HBASE_DIR, |
15 | | - "alluxio-core": CTEST_ALLUXIO_DIR |
| 16 | + "alluxio-core": CTEST_ALLUXIO_DIR, |
| 17 | + "jetty-servlet": CTEST_JETTY_DIR, |
16 | 18 | } |
17 | 19 |
|
18 | 20 | SRC_SUBDIR = { |
19 | 21 | "hadoop-common": "hadoop-common-project/hadoop-common", |
20 | 22 | "hadoop-hdfs": "hadoop-hdfs-project/hadoop-hdfs", |
21 | 23 | "hbase-server": "hbase-server", |
22 | 24 | "zookeeper-server": "zookeeper-server", |
23 | | - "alluxio-core": "core" |
| 25 | + "alluxio-core": "core", |
| 26 | + "jetty-servlet": "jetty-servlet", |
24 | 27 | } |
25 | 28 |
|
26 | 29 | MVN_TEST_PATH = { |
|
29 | 32 | "hbase-server": os.path.join(CTEST_HBASE_DIR, SRC_SUBDIR["hbase-server"]), |
30 | 33 | "zookeeper-server": os.path.join(CTEST_ZOOKEEPER_DIR, SRC_SUBDIR["zookeeper-server"]), |
31 | 34 | "alluxio-core": os.path.join(CTEST_ALLUXIO_DIR, SRC_SUBDIR["alluxio-core"]), |
| 35 | + "jetty-servlet": os.path.join(CTEST_JETTY_DIR, SRC_SUBDIR["jetty-servlet"]) |
32 | 36 | } |
33 | 37 |
|
34 | 38 | LOCAL_CONF_PATH = { |
35 | 39 | "hadoop-common": "results/hadoop-common/conf_params.txt", |
36 | 40 | "hadoop-hdfs": "results/hadoop-hdfs/conf_params.txt", |
37 | 41 | "hbase-server": "results/hbase-server/conf_params.txt", |
38 | 42 | "zookeeper-server": "results/zookeeper-server/conf_params.txt", |
39 | | - "alluxio-core": "results/alluxio-core/conf_params.txt" |
| 43 | + "alluxio-core": "results/alluxio-core/conf_params.txt", |
| 44 | + "jetty-servlet": "results/jetty-servlet/conf_params.txt" |
40 | 45 | } |
41 | 46 |
|
42 | 47 | SUREFIRE_SUBDIR = "target/surefire-reports/*" |
|
63 | 68 | os.path.join(CTEST_ALLUXIO_DIR, "core/server/proxy", SUREFIRE_SUBDIR), |
64 | 69 | os.path.join(CTEST_ALLUXIO_DIR, "core/server/worker", SUREFIRE_SUBDIR), |
65 | 70 | os.path.join(CTEST_ALLUXIO_DIR, "core/server/master", SUREFIRE_SUBDIR) |
66 | | - ] |
| 71 | + ], |
| 72 | + "jetty-servlet": [ |
| 73 | + os.path.join(CTEST_JETTY_DIR, SRC_SUBDIR["jetty-servlet"], SUREFIRE_SUBDIR) |
| 74 | + ], |
67 | 75 | } |
68 | 76 |
|
69 | 77 | LOCAL_SUREFIRE_SUFFIX = "surefire-reports/*" |
|
83 | 91 | ], |
84 | 92 | "alluxio-core": [ |
85 | 93 | os.path.join("surefire-reports/alluxio-core", LOCAL_SUREFIRE_SUFFIX) |
86 | | - ] |
| 94 | + ], |
| 95 | + "jetty-servlet": [ |
| 96 | + os.path.join("surefire-reports/jetty-servlet", LOCAL_SUREFIRE_SUFFIX) |
| 97 | + ], |
87 | 98 | } |
0 commit comments