mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
improve testing
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32544 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
53882ca6d3
commit
fae2b696cd
3 changed files with 17 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-03-13 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/CXXException.m: fix error in include
|
||||
* Tests/GNUmakefile: add info for testing local copy of library
|
||||
|
||||
2011-03-13 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#if defined(__has_include)
|
||||
#if __has_include(<objc/hooks.h>)
|
||||
#import "Foundation/NSObject.h"
|
||||
#import "Additions/GNUstepBase/CXXException.h"
|
||||
#import "GNUstepBase/CXXException.h"
|
||||
#include <objc/runtime.h>
|
||||
#include <objc/hooks.h>
|
||||
|
||||
|
|
|
@ -42,13 +42,23 @@ endif
|
|||
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
TOP_DIR=$(shell dirname $(CURDIR))
|
||||
|
||||
TEST_TOOL_NAMES=
|
||||
|
||||
all::
|
||||
@(echo If you want to run the gnustep-base testsuite, please type \'make check\')
|
||||
|
||||
check::
|
||||
gnustep-tests base
|
||||
(\
|
||||
ADDITIONAL_INCLUDE_DIRS="-I$(TOP_DIR)/Headers -I$(TOP_DIR)/Headers/Additions -I$(TOP_DIR)/Source";\
|
||||
ADDITIONAL_LIB_DIRS="-L$(TOP_DIR)/Source/$(GNUSTEP_OBJ_DIR)";\
|
||||
LD_LIBRARY_PATH="$(TOP_DIR)/Source/$(GNUSTEP_OBJ_DIR):${LD_LIBRARY_PATH}";\
|
||||
export ADDITIONAL_INCLUDE_DIRS;\
|
||||
export ADDITIONAL_LIB_DIRS;\
|
||||
export LD_LIBRARY_PATH;\
|
||||
gnustep-tests base;\
|
||||
)
|
||||
|
||||
clean::
|
||||
gnustep-tests --clean
|
||||
|
|
Loading…
Reference in a new issue