Check in JLIP testing utility.

This commit is contained in:
DragonMinded 2016-02-02 05:17:11 +00:00
parent ad4fc34cb1
commit 0e1c03c7af
3 changed files with 1624 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
*.swp
dvdemu
jliptest

1615
utils/JLIPTest.cpp Executable file

File diff suppressed because it is too large Load Diff

8
utils/Makefile Executable file
View File

@ -0,0 +1,8 @@
all: jliptest
jliptest: JLIPTest.cpp
g++ -Wall -Werror -D_BSD_SOURCE -o jliptest JLIPTest.cpp -ggdb
.DUMMY: clean
clean:
rm -rf jliptest