File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -351,6 +351,31 @@ make check LANG=C ENCODING=EUC_JP
351
351
</para>
352
352
</sect2>
353
353
354
+ <sect2>
355
+ <title>Custom Server Settings</title>
356
+
357
+ <para>
358
+ Custom server settings to use when running a regression test suite can be
359
+ set in the <varname>PGOPTIONS</varname> environment variable (for settings
360
+ that allow this):
361
+ <screen>
362
+ make check PGOPTIONS="-c log_checkpoints=on -c work_mem=50MB"
363
+ </screen>
364
+ When running against a temporary installation, custom settings can also be
365
+ set by supplying a pre-written <filename>postgresql.conf</filename>:
366
+ <screen>
367
+ echo 'log_checkpoints = on' > test_postgresql.conf
368
+ echo 'work_mem = 50MB' >> test_postgresql.conf
369
+ make check EXTRA_REGRESS_OPTS="--temp-config=test_postgresql.conf"
370
+ </screen>
371
+ </para>
372
+
373
+ <para>
374
+ This can be useful to enable additional logging, adjust resource limits,
375
+ or enable extra run-time checks.
376
+ </para>
377
+ </sect2>
378
+
354
379
<sect2>
355
380
<title>Extra Tests</title>
356
381
You can’t perform that action at this time.
0 commit comments