Skip to content

Commit

Permalink
automatic commit at releng box
Browse files Browse the repository at this point in the history
  • Loading branch information
mc36 committed Feb 4, 2023
1 parent d39aecd commit db7b32d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion src/net/freertr/user/userFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,15 @@ public static void section2xml(encXml rep, String beg, List<userFilter> sec) {
if (a.equals(cmds.finish)) {
continue;
}
if (a.equals(cmds.comment)) {
continue;
}
cmds cmd = new cmds("x", a);
String s = beg;
if (cur.section.length() > 0) {
s += "/" + cur.section.replaceAll(" ", "/");
}
String t = s;
for (;;) {
a = cmd.word();
if (a.length() < 1) {
Expand All @@ -207,7 +214,7 @@ public static void section2xml(encXml rep, String beg, List<userFilter> sec) {
rep.data.add(new encXmlEntry(null, s, "", a));
}
rep.data.add(new encXmlEntry(null, s, "", ""));
rep.data.add(new encXmlEntry(null, beg, "", ""));
rep.data.add(new encXmlEntry(null, t, "", ""));
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/rtr.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
url;file;result;test
-;-;-;freeRouter v23.2.4-cur, done by cs@nop.
-;-;-;2023-02-04 09:08:49, took 00:09:44, with 80 workers, on 3102 cases, 0 failed, 0 traces, 3 retries
-;-;-;2023-02-04 09:49:09, took 00:09:55, with 80 workers, on 3102 cases, 0 failed, 0 traces, 0 retries
-;-;-;./rtr.bin
http://sources.freertr.org/cfg/basic01.tst;basic01.tst;success;dummy test
http://sources.freertr.org/cfg/basic02.tst;basic02.tst;success;interface with slot
Expand Down
2 changes: 1 addition & 1 deletion src/rtr.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</style>
<title>tester</title></head><body>
release: freeRouter v23.2.4-cur, done by cs@nop.<br/>
tested: 2023-02-04 09:08:49, took 00:09:44, with 80 workers, on 3102 cases, 0 failed, 0 traces, 3 retries<br/>
tested: 2023-02-04 09:49:09, took 00:09:55, with 80 workers, on 3102 cases, 0 failed, 0 traces, 0 retries<br/>
jvm: ./rtr.bin<br/>
<br/>
<table><thead><tr><td><b>file</b></td><td><b>result</b></td><td><b>test</b></td></tr></thead><tbody>
Expand Down

0 comments on commit db7b32d

Please sign in to comment.