From 590dbab0385a61f3188b2e834b81d0cce2478ac2 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Wed, 18 Feb 2009 18:42:51 +0000 Subject: [PATCH] ebl use JobHisto instead of JobHistory git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8477 91ce42f0-d328-0410-95d8-f526ca767f89 --- regress/tests/stats-test | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/regress/tests/stats-test b/regress/tests/stats-test index 67ffab881d..b0609d5461 100755 --- a/regress/tests/stats-test +++ b/regress/tests/stats-test @@ -32,7 +32,7 @@ wait messages update stats days=1 sql -SELECT 'FOUND' AS test FROM JobHistory; +SELECT 'FOUND' AS test FROM JobHisto; run job=$JobName yes wait @@ -41,13 +41,13 @@ messages @$out ${cwd}/tmp/log2.out update stats sql -SELECT 'FOUND' AS test FROM JobHistory; +SELECT 'FOUND' AS test FROM JobHisto; list jobs prune stats yes @$out ${cwd}/tmp/log3.out sql -SELECT 'FOUND' AS test FROM JobHistory; +SELECT 'FOUND' AS test FROM JobHisto; quit END_OF_DATA @@ -64,19 +64,19 @@ stop_bacula COUNT=`grep FOUND ${cwd}/tmp/log1.out | wc -l` if [ $COUNT -ne 1 ]; then - print_debug "Bad count in JobHistory table" + print_debug "Bad count in JobHisto table" bstat=1 fi COUNT=`grep FOUND ${cwd}/tmp/log2.out | wc -l` if [ $COUNT -ne 3 ]; then - print_debug "Bad count in JobHistory table" + print_debug "Bad count in JobHisto table" bstat=2 fi COUNT=`grep FOUND ${cwd}/tmp/log3.out | wc -l` if [ $COUNT -ne 1 ]; then - print_debug "Bad count in JobHistory table" + print_debug "Bad count in JobHisto table" bstat=3 fi -- 2.39.5