@@ -66,7 +66,6 @@ AC_PATH_TOOL(RANLIB, ranlib)
66
66
AC_PATH_TOOL ( STRIP , strip )
67
67
AC_PATH_TOOL ( GCOV , gcov )
68
68
AC_PATH_PROG ( LCOV , lcov )
69
- AC_PATH_PROG ( JAVA , java )
70
69
AC_PATH_PROGS ( [ PYTHON] , [ python3 python2.7 python2 python] )
71
70
AC_PATH_PROG ( GENHTML , genhtml )
72
71
AC_PATH_PROG ( [ GIT] , [ git] )
@@ -113,16 +112,6 @@ AC_ARG_ENABLE(bench,
113
112
[ use_bench=$enableval] ,
114
113
[ use_bench=yes] )
115
114
116
- AC_ARG_WITH ( [ comparison-tool] ,
117
- AS_HELP_STRING ( [ --with-comparison-tool] ,[ path to java comparison tool (requires --enable-tests)] ) ,
118
- [ use_comparison_tool=$withval] ,
119
- [ use_comparison_tool=no] )
120
-
121
- AC_ARG_ENABLE ( [ comparison-tool-reorg-tests] ,
122
- AS_HELP_STRING ( [ --enable-comparison-tool-reorg-tests] ,[ enable expensive reorg tests in the comparison tool (default no)] ) ,
123
- [ use_comparison_tool_reorg_tests=$enableval] ,
124
- [ use_comparison_tool_reorg_tests=no] )
125
-
126
115
AC_ARG_ENABLE ( [ extended-rpc-tests] ,
127
116
AS_HELP_STRING ( [ --enable-extended-rpc-tests] ,[ enable expensive RPC tests when using lcov (default no)] ) ,
128
117
[ use_extended_rpc_tests=$enableval] ,
@@ -382,19 +371,6 @@ if test x$use_pkgconfig = xyes; then
382
371
] )
383
372
fi
384
373
385
- if test x$use_comparison_tool != xno; then
386
- AC_SUBST ( JAVA_COMPARISON_TOOL , $use_comparison_tool )
387
- fi
388
-
389
- if test x$use_comparison_tool_reorg_tests != xno; then
390
- if test x$use_comparison_tool = x; then
391
- AC_MSG_ERROR ( "comparison tool reorg tests but comparison tool was not specified" )
392
- fi
393
- AC_SUBST ( COMPARISON_TOOL_REORG_TESTS , 1 )
394
- else
395
- AC_SUBST ( COMPARISON_TOOL_REORG_TESTS , 0 )
396
- fi
397
-
398
374
if test x$use_extended_rpc_tests != xno; then
399
375
AC_SUBST ( EXTENDED_RPC_TESTS , - extended )
400
376
fi
@@ -406,18 +382,12 @@ if test x$use_lcov = xyes; then
406
382
if test x$GCOV = x; then
407
383
AC_MSG_ERROR ( "lcov testing requested but gcov not found" )
408
384
fi
409
- if test x$JAVA = x; then
410
- AC_MSG_ERROR ( "lcov testing requested but java not found" )
411
- fi
412
385
if test x$PYTHON = x; then
413
386
AC_MSG_ERROR ( "lcov testing requested but python not found" )
414
387
fi
415
388
if test x$GENHTML = x; then
416
389
AC_MSG_ERROR ( "lcov testing requested but genhtml not found" )
417
390
fi
418
- if test x$use_comparison_tool = x; then
419
- AC_MSG_ERROR ( "lcov testing requested but comparison tool was not specified" )
420
- fi
421
391
LCOV="$LCOV --gcov-tool=$GCOV"
422
392
AX_CHECK_COMPILE_FLAG ( [ --coverage] ,[ CXXFLAGS="$CXXFLAGS --coverage"] ,
423
393
[ AC_MSG_ERROR ( "lcov testing requested but -- coverage flag does not work" ) ] )
@@ -1036,8 +1006,6 @@ AM_CONDITIONAL([ENABLE_QT_TESTS],[test x$BUILD_TEST_QT = xyes])
1036
1006
AM_CONDITIONAL([ ENABLE_BENCH] ,[ test x$use_bench = xyes] )
1037
1007
AM_CONDITIONAL([ USE_QRCODE] , [ test x$use_qr = xyes] )
1038
1008
AM_CONDITIONAL([ USE_LCOV] ,[ test x$use_lcov = xyes] )
1039
- AM_CONDITIONAL([ USE_COMPARISON_TOOL] ,[ test x$use_comparison_tool != xno] )
1040
- AM_CONDITIONAL([ USE_COMPARISON_TOOL_REORG_TESTS] ,[ test x$use_comparison_tool_reorg_test != xno] )
1041
1009
AM_CONDITIONAL([ GLIBC_BACK_COMPAT] ,[ test x$use_glibc_compat = xyes] )
1042
1010
AM_CONDITIONAL([ HARDEN] ,[ test x$use_hardening = xyes] )
1043
1011
0 commit comments