-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ab25cq
committed
May 3, 2018
1 parent
fe96f5b
commit 6f480ae
Showing
27 changed files
with
390 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DEF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -941,7 +941,6 @@ module MEqualableList | |
} | ||
|
||
def join():String { | ||
println("join2"); | ||
return self.join(""); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
A\,A\,A,B\,B\,B,C\+C\+C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
class CGITest | ||
{ | ||
def main():static { | ||
a := "aaa+:c&"; | ||
|
||
Clover.test("CGI test1", a.quotedString().equals("aaa\\+\\:c\\&")); | ||
Clover.test("CGI test2", a.quotedString().getPlainTextFromQuotedString().equals("aaa+:c&")); | ||
|
||
for(i:=0; i<100; i++) { | ||
pid := fork() { | ||
File.lockBlock("a.lock", true) { | ||
"ABC".write("ABC"); | ||
} | ||
|
||
exit(0); | ||
} | ||
|
||
File.lockBlock("a.lock", true) { | ||
"DEF".write("ABC"); | ||
} | ||
|
||
status:wait_status = 0; | ||
waitpid(pid, &status, System.WUNTRACED); | ||
} | ||
|
||
Clover.test("CGI test3", true); | ||
|
||
b := slist { "AAA", "BBB", "CCC" }; | ||
|
||
b.putcsv("a.csv"); | ||
|
||
Clover.test("CGI test4", p"a.csv".read().toString().equals("AAA,BBB,CCC")); | ||
|
||
c := File.createListFromCSV("a.csv"); | ||
|
||
Clover.test("CGI test5", c.equals(slist { "AAA", "BBB", "CCC" })); | ||
|
||
d := slist { "A,A,A", "B,B,B", "C+C+C" }; | ||
|
||
d.putcsv("a.csv"); | ||
|
||
e := File.createListFromCSV("a.csv"); | ||
|
||
e.toString().println(); | ||
|
||
Clover.test("CGI test6", e.equals(slist { "A,A,A", "B,B,B", "C+C+C" })); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ Section: unknown | |
Priority: optional | ||
Maintainer: Daisuke Minato <[email protected]> | ||
Build-Depends: debhelper (>= 9), autotools-dev, libpcre3-dev, libreadline-dev, clang, libreadline7 | ||
Standards-Version: 4.0.1 | ||
Standards-Version: 4.0.2 | ||
Homepage: https://github.com/ab25cq/clover2/wiki | ||
Vcs-Git: https://github.com/ab25cq/clover2.git | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
clover2-dbgsym_4.0.1-1_amd64.deb debug extra | ||
clover2_4.0.1-1_amd64.buildinfo unknown optional | ||
clover2_4.0.1-1_amd64.deb unknown optional | ||
clover2-dbgsym_4.0.2-1_amd64.deb debug extra | ||
clover2_4.0.2-1_amd64.buildinfo unknown optional | ||
clover2_4.0.2-1_amd64.deb unknown optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
#!/bin/bash | ||
|
||
if test -e ../clover2_4.0.1-1_i386.deb | ||
if test -e ../clover2_4.0.2-1_i386.deb | ||
then | ||
if dpkg -l | egrep ^clover2 | ||
then | ||
sudo apt-get remove clover2 | ||
fi | ||
|
||
sudo dpkg -i ../clover2_4.0.1-1_i386.deb | ||
sudo dpkg -i ../clover2_4.0.2-1_i386.deb | ||
fi | ||
|
||
if test -e ../clover2_4.0.1-1_amd64.deb | ||
if test -e ../clover2_4.0.2-1_amd64.deb | ||
then | ||
if dpkg -l | egrep ^clover2 | ||
then | ||
sudo apt-get remove clover2 | ||
fi | ||
|
||
sudo dpkg -i ../clover2_4.0.1-1_amd64.deb | ||
sudo dpkg -i ../clover2_4.0.2-1_amd64.deb | ||
fi |
Oops, something went wrong.