ICU-5313 Make it easier to compiler the performance tests on Unix type

machines.

X-SVN-Rev: 20034
This commit is contained in:
George Rhoten 2006-08-11 18:48:08 +00:00
parent f302112d27
commit 818fa504fd
16 changed files with 187 additions and 55 deletions

42
.gitignore vendored
View file

@ -215,6 +215,48 @@ icu4c/source/test/letest/Makefile
icu4c/source/test/letest/Release
icu4c/source/test/letest/letest
icu4c/source/test/letest/letest.exe
icu4c/source/test/perf/charperf/*.d
icu4c/source/test/perf/charperf/*.o
icu4c/source/test/perf/charperf/Debug
icu4c/source/test/perf/charperf/Makefile
icu4c/source/test/perf/charperf/Release
icu4c/source/test/perf/charperf/charperf
icu4c/source/test/perf/collperf/*.d
icu4c/source/test/perf/collperf/*.o
icu4c/source/test/perf/collperf/Debug
icu4c/source/test/perf/collperf/Makefile
icu4c/source/test/perf/collperf/Release
icu4c/source/test/perf/collperf/collperf
icu4c/source/test/perf/normperf/*.d
icu4c/source/test/perf/normperf/*.o
icu4c/source/test/perf/normperf/Debug
icu4c/source/test/perf/normperf/Makefile
icu4c/source/test/perf/normperf/Release
icu4c/source/test/perf/normperf/normperf
icu4c/source/test/perf/ubrkperf/*.d
icu4c/source/test/perf/ubrkperf/*.o
icu4c/source/test/perf/ubrkperf/Debug
icu4c/source/test/perf/ubrkperf/Makefile
icu4c/source/test/perf/ubrkperf/Release
icu4c/source/test/perf/ubrkperf/ubrkperf
icu4c/source/test/perf/usetperf/*.d
icu4c/source/test/perf/usetperf/*.o
icu4c/source/test/perf/usetperf/Debug
icu4c/source/test/perf/usetperf/Makefile
icu4c/source/test/perf/usetperf/Release
icu4c/source/test/perf/usetperf/usetperf
icu4c/source/test/perf/ustrperf/*.d
icu4c/source/test/perf/ustrperf/*.o
icu4c/source/test/perf/ustrperf/Debug
icu4c/source/test/perf/ustrperf/Makefile
icu4c/source/test/perf/ustrperf/Release
icu4c/source/test/perf/ustrperf/charperf
icu4c/source/test/perf/utfperf/*.d
icu4c/source/test/perf/utfperf/*.o
icu4c/source/test/perf/utfperf/Debug
icu4c/source/test/perf/utfperf/Makefile
icu4c/source/test/perf/utfperf/Release
icu4c/source/test/perf/utfperf/utfperf
icu4c/source/test/testdata/Makefile
icu4c/source/test/testdata/out
icu4c/source/test/testdata/pkgdata.inc

View file

@ -0,0 +1,6 @@
*.d
*.o
charperf
Debug
Release
Makefile

View file

@ -0,0 +1,6 @@
*.d
*.o
collperf
Debug
Release
Makefile

View file

@ -1,5 +1,5 @@
## Makefile.in for ICU - test/collperf
## Copyright (c) 2001-2005, International Business Machines Corporation and
## Makefile.in for ICU - test/perf/collperf
## Copyright (c) 2001-2006, International Business Machines Corporation and
## others. All Rights Reserved.
## Source directory information
@ -10,11 +10,8 @@ top_builddir = ../../..
include $(top_builddir)/icudefs.mk
## Platform-specific setup
include @platform_make_fragment@
## Build directory information
subdir = test/collperf
subdir = test/perf/collperf
## Extra files to remove for 'make clean'
CLEANFILES = *~ $(DEPS)
@ -22,16 +19,8 @@ CLEANFILES = *~ $(DEPS)
## Target information
TARGET = collperf
DEFS = @DEFS@
CPPFLAGS = @CPPFLAGS@ -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/tools/toolutil
CFLAGS = @CFLAGS@
CXXFLAGS = @CXXFLAGS@
ENABLE_RPATH = @ENABLE_RPATH@
ifeq ($(ENABLE_RPATH),YES)
RPATHLDFLAGS = $(LD_RPATH)$(LD_RPATH_PRE)$(libdir)
endif
LDFLAGS = @LDFLAGS@ $(RPATHLDFLAGS)
LIBS = $(LIBICUUC) $(LIBICUI18N) $(LIBICUTOOLUTIL) @LIBS@ @LIB_M@
CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw
LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M)
OBJECTS = collperf.o

View file

@ -1,6 +1,6 @@
/********************************************************************
* COPYRIGHT:
* Copyright (C) 2001-2005 IBM, Inc. All Rights Reserved.
* Copyright (C) 2001-2006 IBM, Inc. All Rights Reserved.
*
********************************************************************/
@ -8,6 +8,7 @@
#include <stdlib.h>
#include <locale.h>
#include <limits.h>
#include <string.h>
#include "unicode/uperf.h"
#include "uoptions.h"
#include "unicode/coll.h"

View file

@ -0,0 +1,6 @@
*.d
*.o
normperf
Debug
Release
Makefile

View file

@ -1,4 +1,4 @@
## Makefile.in for ICU - test/perf/collperf
## Makefile.in for ICU - test/perf/normperf
## Copyright (c) 2001-2006, International Business Machines Corporation and
## others. All Rights Reserved.

View file

@ -0,0 +1,6 @@
*.d
*.o
ubrkperf
Debug
Release
Makefile

View file

@ -0,0 +1,6 @@
*.d
*.o
usetperf
Debug
Release
Makefile

View file

@ -1,5 +1,5 @@
## Makefile.in for ICU - test/usetperf
## Copyright (c) 2001-2005, International Business Machines Corporation and
## Makefile.in for ICU - test/perf/usetperf
## Copyright (c) 2001-2006, International Business Machines Corporation and
## others. All Rights Reserved.
## Source directory information
@ -10,11 +10,8 @@ top_builddir = ../../..
include $(top_builddir)/icudefs.mk
## Platform-specific setup
include @platform_make_fragment@
## Build directory information
subdir = test/usetperf
subdir = test/perf/usetperf
## Extra files to remove for 'make clean'
CLEANFILES = *~ $(DEPS)
@ -22,16 +19,8 @@ CLEANFILES = *~ $(DEPS)
## Target information
TARGET = usetperf
DEFS = @DEFS@
CPPFLAGS = @CPPFLAGS@ -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/tools/toolutil
CFLAGS = @CFLAGS@
CXXFLAGS = @CXXFLAGS@
ENABLE_RPATH = @ENABLE_RPATH@
ifeq ($(ENABLE_RPATH),YES)
RPATHLDFLAGS = $(LD_RPATH)$(LD_RPATH_PRE)$(libdir)
endif
LDFLAGS = @LDFLAGS@ $(RPATHLDFLAGS)
LIBS = $(LIBICUUC) $(LIBICUI18N) $(LIBICUTOOLUTIL) @LIBS@ @LIB_M@
CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw
LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M)
OBJECTS = usetperf.o bitset.o

View file

@ -0,0 +1,6 @@
*.d
*.o
charperf
Debug
Release
Makefile

View file

@ -0,0 +1,78 @@
## Makefile.in for ICU - test/perf/ustrperf
## Copyright (c) 2001-2006, International Business Machines Corporation and
## others. All Rights Reserved.
## Source directory information
srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = ../../..
include $(top_builddir)/icudefs.mk
## Build directory information
subdir = test/perf/ustrperf
## Extra files to remove for 'make clean'
CLEANFILES = *~ $(DEPS)
## Target information
TARGET = ustrperf
CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw
LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M)
OBJECTS = stringperf.o
DEPS = $(OBJECTS:.o=.d)
## List of phony targets
.PHONY : all all-local install install-local clean clean-local \
distclean distclean-local dist dist-local check check-local
## Clear suffix list
.SUFFIXES :
## List of standard targets
all: all-local
install: install-local
clean: clean-local
distclean : distclean-local
dist: dist-local
check: all check-local
all-local: $(TARGET)
install-local:
dist-local:
clean-local:
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
$(RMV) Makefile
check-local: all-local
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
$(TARGET) : $(OBJECTS)
$(LINK.cc) -o $@ $^ $(LIBS)
invoke:
ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) $(INVOCATION)
ifeq (,$(MAKECMDGOALS))
-include $(DEPS)
else
ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
-include $(DEPS)
endif
endif
endif

View file

@ -1,6 +1,6 @@
/********************************************************************
* COPYRIGHT:
* Copyright (C) 2002-2004 International Business Machines Corporation
* Copyright (C) 2002-2006 International Business Machines Corporation
* and others. All Rights Reserved.
*
********************************************************************/
@ -372,4 +372,6 @@ UPerfFunction* StringPerformanceTest::TestStdLibScan2()
} else {
return new StringPerfFunction(StdLibScan2, StrBuffer, StrBufferLen, uselen);
}
}
}

View file

@ -1,9 +1,8 @@
/*
**********************************************************************
* Copyright (c) 2002-2005, International Business Machines
* Copyright (c) 2002-2006, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
**********************************************************************
*/
#ifndef _STRINGPERF_H
#define _STRINGPERF_H
@ -547,4 +546,5 @@ inline void StdLibScan2(const wchar_t* src,int32_t srcLen, stlstring s0)
scan_idx = (int) sScan_STRING.find_first_of(L"sm");
}
#endif // STRINGPERF_H
#endif // STRINGPERF_H

View file

@ -0,0 +1,6 @@
*.d
*.o
utfperf
Debug
Release
Makefile

View file

@ -1,5 +1,5 @@
## Makefile.in for ICU - test/utfperf
## Copyright (c) 2001-2005, International Business Machines Corporation and
## Makefile.in for ICU - test/perf/utfperf
## Copyright (c) 2001-2006, International Business Machines Corporation and
## others. All Rights Reserved.
## Source directory information
@ -10,11 +10,8 @@ top_builddir = ../../..
include $(top_builddir)/icudefs.mk
## Platform-specific setup
include @platform_make_fragment@
## Build directory information
subdir = test/utfperf
subdir = test/perf/utfperf
## Extra files to remove for 'make clean'
CLEANFILES = *~ $(DEPS)
@ -22,16 +19,8 @@ CLEANFILES = *~ $(DEPS)
## Target information
TARGET = utfperf
DEFS = @DEFS@
CPPFLAGS = @CPPFLAGS@ -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/tools/toolutil
CFLAGS = @CFLAGS@
CXXFLAGS = @CXXFLAGS@
ENABLE_RPATH = @ENABLE_RPATH@
ifeq ($(ENABLE_RPATH),YES)
RPATHLDFLAGS = $(LD_RPATH)$(LD_RPATH_PRE)$(libdir)
endif
LDFLAGS = @LDFLAGS@ $(RPATHLDFLAGS)
LIBS = $(LIBICUUC) $(LIBICUI18N) $(LIBICUTOOLUTIL) @LIBS@ @LIB_M@
CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw
LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M)
OBJECTS = utfperf.o