mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Test info
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16803 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9490e8afcb
commit
49667f3514
3 changed files with 58 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-05-26 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Testing/Makefile.postamble (check): Define to run all
|
||||
checkable tools (ones that exit in a finite amount of time).
|
||||
* Testing/README: New.
|
||||
|
||||
2003-05-23 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/Additions/GSXML.m: Some work towards making it possible to
|
||||
|
|
|
@ -35,6 +35,42 @@
|
|||
# otherwise the normal makefile rules will not be performed.
|
||||
#
|
||||
|
||||
CHECKABLE_TOOLS = \
|
||||
awake \
|
||||
basic \
|
||||
benchmark \
|
||||
call \
|
||||
containers \
|
||||
create-abbrevs \
|
||||
create-regions \
|
||||
fref \
|
||||
nsarchiver \
|
||||
nsarray \
|
||||
nsattributedstring \
|
||||
nsbundle \
|
||||
nscharacterset \
|
||||
nsconnection \
|
||||
nsdata \
|
||||
nsdate \
|
||||
nsdictionary \
|
||||
nsfilehandle \
|
||||
nsfilemanager \
|
||||
nshashtable \
|
||||
nshost \
|
||||
nsinvocation \
|
||||
nsmaptable \
|
||||
nsnotification \
|
||||
nsprocessinfo \
|
||||
nsscanner \
|
||||
nsset \
|
||||
nstask \
|
||||
nstimezone \
|
||||
release \
|
||||
string \
|
||||
thread \
|
||||
thread-except \
|
||||
values
|
||||
|
||||
# Things to do before compiling
|
||||
# before-all::
|
||||
|
||||
|
@ -66,6 +102,11 @@
|
|||
after-distclean::
|
||||
rm -f cstream.dat fref.dat nsarchiver.dat
|
||||
|
||||
check::
|
||||
for f in $(CHECKABLE_TOOLS); do \
|
||||
obj/$$f ; \
|
||||
done
|
||||
|
||||
# Things to do before checking
|
||||
# before-check::
|
||||
|
||||
|
@ -80,3 +121,4 @@ copy-dist: $(DIST_FILES)
|
|||
done
|
||||
mkdir ../snap/checks/English.lproj
|
||||
cp English.lproj/NXStringTable.example ../snap/checks/English.lproj
|
||||
|
||||
|
|
10
Testing/README
Normal file
10
Testing/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
|
||||
These tests are mostly just samples of code that developers put together
|
||||
to do quick checks to make sure things are working. This is not a
|
||||
comprehensive test suite. Some tests don't say if they have passed or
|
||||
not. Some tests do not even output anything. Some tests never quit!
|
||||
|
||||
If you want to run a comprehensive testsuite. Install gnustep-guile
|
||||
(ftp://ftp.gnustep.org/pub/gnustep/libs) and run the gnustep testsuite
|
||||
(ftp://ftp.gnustep.org/pub/gnustep/tests).
|
||||
|
Loading…
Reference in a new issue