mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 05:00:07 +02:00
* readme extended
* os and processor is passed by the makefile to dbdigest
This commit is contained in:
parent
82752eb4c2
commit
dc9c9e21f4
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Don't edit, this file is generated by FPCMake Version 1.1 [2003/10/09]
|
||||
# Don't edit, this file is generated by FPCMake Version 1.1 [2003/10/15]
|
||||
#
|
||||
default: allexectests
|
||||
MAKEFILETARGETS=linux go32v2 win32 os2 freebsd beos netbsd amiga atari sunos qnx netware openbsd wdosx palmos macos darwin emx watcom
|
||||
@ -10,6 +10,7 @@ SEARCHPATH:=$(filter-out .,$(subst :, ,$(PATH)))
|
||||
else
|
||||
SEARCHPATH:=$(subst ;, ,$(PATH))
|
||||
endif
|
||||
SEARCHPATH+=$(patsubst %/,%,$(dir $(MAKE)))
|
||||
PWD:=$(strip $(wildcard $(addsuffix /pwd.exe,$(SEARCHPATH))))
|
||||
ifeq ($(PWD),)
|
||||
PWD:=$(strip $(wildcard $(addsuffix /pwd,$(SEARCHPATH))))
|
||||
@ -1514,7 +1515,7 @@ distclean: clean
|
||||
rundigest : $(DIGESTDEP)
|
||||
-$(DIGEST)
|
||||
ifeq ($(USESQL),YES)
|
||||
-$(DBDIGEST) -v $(DIGESTVER)
|
||||
-$(DBDIGEST) -v $(DIGESTVER) -o $(OS_TARGET) -c $(CPU_TARGET)
|
||||
endif
|
||||
all : allexectests
|
||||
full : clean allexectests rundigest
|
||||
|
@ -235,7 +235,7 @@ distclean: clean
|
||||
rundigest : $(DIGESTDEP)
|
||||
-$(DIGEST)
|
||||
ifeq ($(USESQL),YES)
|
||||
-$(DBDIGEST) -v $(DIGESTVER)
|
||||
-$(DBDIGEST) -v $(DIGESTVER) -o $(OS_TARGET) -c $(CPU_TARGET)
|
||||
endif
|
||||
|
||||
all : allexectests
|
||||
|
@ -24,10 +24,13 @@ FAIL..............Compilation must fail
|
||||
RECOMPILE.........????
|
||||
NORUN.............Do not execute test, only compile it
|
||||
KNOWN.............Known bug, will not be logged as bug
|
||||
INTERACTIVE.......Do not execute test, as it requires user
|
||||
INTERACTIVE.......Do not execute test, as it requires user
|
||||
intervention
|
||||
NOTE..............Output note when compiling/executing test
|
||||
|
||||
To actually start the testsuite:
|
||||
do a simple make full
|
||||
This should create a log of all failed tests.
|
||||
do a simple
|
||||
make full This should create a log of all failed tests.
|
||||
|
||||
make rundigest scans the created log file and outputs some statistics
|
||||
make rundigest USESQL=YES sends the results to an SQL database
|
||||
|
Loading…
Reference in New Issue
Block a user