Skip to content

Commit

Permalink
Allow to run 'make test' in the toplevel directory
Browse files Browse the repository at this point in the history
  • Loading branch information
joerivanruth committed Feb 28, 2024
1 parent f5c8dfa commit 07acbba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ jre17jars: src/main/java/org/monetdb/jdbc/MonetVersion.java
ant -f build_jre17.xml distjdbc
rm -rf build

test: all
echo banana
cd tests; ant -f build.xml test

testsjar:
cd tests; ant -f build.xml jar_jdbctests

Expand Down
1 change: 1 addition & 0 deletions tests/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ Copyright 1997 - July 2008 CWI.
<java classname="${test.class}" failonerror="true" fork="true">
<classpath>
<pathelement path="${builddir}" />
<pathelement path="." /> <!-- Needed for 'ant test' to find tests.md. -->
<pathelement path="${jdbc_jar}" />
</classpath>
<arg value="${jdbc_url}" />
Expand Down

0 comments on commit 07acbba

Please sign in to comment.