Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some performance tests #75

Merged
merged 2 commits into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -17503,7 +17503,7 @@ done
##
# Epilogue.
##
ac_config_files="$ac_config_files genders.spec Makefile src/Makefile src/libcommon/Makefile src/libgenders/Makefile src/nodeattr/Makefile src/libgenders/genders.h src/extensions/Makefile src/extensions/cplusplus/Makefile src/extensions/perl/Makefile src/extensions/perl/Libgenders/Makefile src/extensions/perl/Libgenders/Libgenders.pm src/extensions/perl/Genders/Makefile src/extensions/perl/Genders/Genders.pm src/extensions/python/Makefile src/extensions/python/genderssetup.py src/extensions/java/Makefile src/testsuite/Makefile src/testsuite/libgenders/Makefile src/testsuite/libgenders/testdatabases/Makefile compat/Makefile contrib/Makefile contrib/cfengine/Makefile contrib/cfengine/cfengine-2.2.10/Makefile contrib/cfengine/cfengine-3.3.0/Makefile contrib/php/Makefile man/Makefile man/compat/Makefile"
ac_config_files="$ac_config_files genders.spec Makefile src/Makefile src/libcommon/Makefile src/libgenders/Makefile src/nodeattr/Makefile src/libgenders/genders.h src/extensions/Makefile src/extensions/cplusplus/Makefile src/extensions/perl/Makefile src/extensions/perl/Libgenders/Makefile src/extensions/perl/Libgenders/Libgenders.pm src/extensions/perl/Genders/Makefile src/extensions/perl/Genders/Genders.pm src/extensions/python/Makefile src/extensions/python/genderssetup.py src/extensions/java/Makefile src/testsuite/Makefile src/testsuite/libgenders/Makefile src/testsuite/libgenders/testdatabases/Makefile src/testsuite/performance/Makefile src/testsuite/performance/testdatabases/Makefile compat/Makefile contrib/Makefile contrib/cfengine/Makefile contrib/cfengine/cfengine-2.2.10/Makefile contrib/cfengine/cfengine-3.3.0/Makefile contrib/php/Makefile man/Makefile man/compat/Makefile"

cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
Expand Down Expand Up @@ -18663,6 +18663,8 @@ do
"src/testsuite/Makefile") CONFIG_FILES="$CONFIG_FILES src/testsuite/Makefile" ;;
"src/testsuite/libgenders/Makefile") CONFIG_FILES="$CONFIG_FILES src/testsuite/libgenders/Makefile" ;;
"src/testsuite/libgenders/testdatabases/Makefile") CONFIG_FILES="$CONFIG_FILES src/testsuite/libgenders/testdatabases/Makefile" ;;
"src/testsuite/performance/Makefile") CONFIG_FILES="$CONFIG_FILES src/testsuite/performance/Makefile" ;;
"src/testsuite/performance/testdatabases/Makefile") CONFIG_FILES="$CONFIG_FILES src/testsuite/performance/testdatabases/Makefile" ;;
"compat/Makefile") CONFIG_FILES="$CONFIG_FILES compat/Makefile" ;;
"contrib/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/Makefile" ;;
"contrib/cfengine/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/cfengine/Makefile" ;;
Expand Down
2 changes: 2 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,8 @@ AC_CONFIG_FILES( \
src/testsuite/Makefile \
src/testsuite/libgenders/Makefile \
src/testsuite/libgenders/testdatabases/Makefile \
src/testsuite/performance/Makefile \
src/testsuite/performance/testdatabases/Makefile \
compat/Makefile \
contrib/Makefile \
contrib/cfengine/Makefile \
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/java/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -644,8 +644,8 @@ distclean-generic:
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
@WITH_JAVA_EXTENSIONS_FALSE@clean-local:
@WITH_JAVA_EXTENSIONS_FALSE@install-data-local:
@WITH_JAVA_EXTENSIONS_FALSE@clean-local:
clean: clean-am

clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \
Expand Down
2 changes: 1 addition & 1 deletion src/testsuite/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
## Process this file with automake to produce Makefile.in.
##*****************************************************************************

SUBDIRS = libgenders
SUBDIRS = libgenders performance
2 changes: 1 addition & 1 deletion src/testsuite/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ target_vendor = @target_vendor@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
SUBDIRS = libgenders
SUBDIRS = libgenders performance
all: all-recursive

.SUFFIXES:
Expand Down
14 changes: 14 additions & 0 deletions src/testsuite/performance/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
##*****************************************************************************
## $Id: Makefile.am,v 1.3 2006-03-28 02:27:22 chu11 Exp $
##*****************************************************************************
## Process this file with automake to produce Makefile.in.
##*****************************************************************************

SUBDIRS = testdatabases

clean:
rm -f test.timing*
rm -f test.output*

EXTRA_DIST = perf_tests.sh

Loading