-
Notifications
You must be signed in to change notification settings - Fork 0
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
penglei
committed
Dec 21, 2013
1 parent
2d8ef53
commit 22625e9
Showing
137 changed files
with
215 additions
and
294 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.DS_Store | ||
node_modules | ||
resource/cs | ||
test/dev/resource/cs | ||
|
||
# Editor backup files | ||
*.bak | ||
|
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
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,27 @@ | ||
{ | ||
"name": "jencs", | ||
"version": "0.1.0", | ||
"description": "clearsilver render engine, with a debugger", | ||
"keywords": [ | ||
"clearsilver", | ||
"debugger" | ||
], | ||
"author": { | ||
"name": "soulfree", | ||
"email": "[email protected]" | ||
}, | ||
"dependencies": { | ||
"nomnom": ">= 1.6.0", | ||
"socket.io" : "~0.9.16", | ||
"express": "~3.4" | ||
}, | ||
"devDependencies": { | ||
}, | ||
"main": "interpreter/index.js", | ||
"bin": { | ||
"jencs": "bin/jencs" | ||
}, | ||
"engines": { | ||
"node": ">= 0.7.0" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,23 @@ | ||
all:test_my | ||
|
||
MY_TESTS_DATA=wupdata-1.hdf wupdata-2.hdf | ||
test_my: | ||
@echo "Running wup cs tests"; | ||
@failed=0;\ | ||
for wupdata in $(MY_TESTS_DATA); do \ | ||
jencs cs/wupmain.cs $$wupdata --include=./cs/module > $$wupdata.out.html; \ | ||
diff $$wupdata.out.html $$wupdata.gold.html > $$wupdata.diff; \ | ||
return_code=$$?; \ | ||
if [ $$return_code -ne 0 ]; then \ | ||
echo "$$wupdata" test failed!; \ | ||
failed=1; \ | ||
else \ | ||
rm -rf $$wupdata.out.html; \ | ||
rm -rf $$wupdata.diff; \ | ||
fi; \ | ||
done; \ | ||
if [ $$failed -eq 1 ]; then \ | ||
echo "Test wupdata Failed!"; \ | ||
else \ | ||
echo "All wupdata test passed!"; \ | ||
fi; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,2 @@ | ||
all: | ||
node test |
Oops, something went wrong.