summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-03-19 03:31:10 +0100
committerGitHub <noreply@github.com>2018-03-19 03:31:10 +0100
commitdaa2d6b1c40354ecce0e48e6c5ee686efe642c4b (patch)
treedc0781d54354999b4416d3b8ec5696112107bc05 /scripts
parent459ebf9cca578dc1d88f13da3a4fd0499cb7f2f8 (diff)
downloadbugzilla-daa2d6b1c40354ecce0e48e6c5ee686efe642c4b.tar.gz
bugzilla-daa2d6b1c40354ecce0e48e6c5ee686efe642c4b.tar.xz
fix all the tests
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/entrypoint.pl9
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/entrypoint.pl b/scripts/entrypoint.pl
index 23578e257..d5612dd85 100755
--- a/scripts/entrypoint.pl
+++ b/scripts/entrypoint.pl
@@ -103,6 +103,11 @@ sub cmd_dev_httpd {
exit $httpd_exit_f->get;
}
+sub cmd_checksetup_gen_files {
+ my (@args) = @_;
+ run( 'perl', 'checksetup.pl', '--no-database', @args);
+}
+
sub cmd_checksetup {
check_data_dir();
wait_for_db();
@@ -133,7 +138,7 @@ sub cmd_test_webservices {
check_data_dir();
copy_qa_extension();
assert_database()->get;
- my $httpd_exit_f = run_cereal_and_httpd('-DHTTPD_IN_SUBDIR', '-DACCESS_LOGS');
+ my $httpd_exit_f = run_cereal_and_httpd('-DHTTPD_IN_SUBDIR');
my $prove_exit_f = run_prove(
httpd_url => $conf->{browser_url},
prove_cmd => [
@@ -187,7 +192,7 @@ sub cmd_test_bmo {
$ENV{BZ_TEST_NEWBIE2} = 'newbie2@mozilla.example';
$ENV{BZ_TEST_NEWBIE2_PASS} = 'captain.space.pants.time.lord';
- my $httpd_exit_f = run_cereal_and_httpd('-DACCESS_LOGS');
+ my $httpd_exit_f = run_cereal_and_httpd();
my $prove_exit_f = run_prove(
httpd_url => $ENV{BZ_BASE_URL},
prove_cmd => [ 'prove', '-I/app', '-I/app/local/lib/perl5', @prove_args ],