Re: [HACKERS] Need a builtin way to run all tests faster manner
От
Tom Lane
Тема
Re: [HACKERS] Need a builtin way to run all tests faster manner
Дата
Msg-id
4662.1489198216@sss.pgh.pa.us
Ответ на
Re: [HACKERS] Need a builtin way to run all tests faster manner (Peter Eisentraut)
Список
Дерево обсуждения
[HACKERS] Need a builtin way to run all tests faster manner Andres Freund <andres@anarazel.de>
Re: [HACKERS] Need a builtin way to run all tests faster manner Stephen Frost <sfrost@snowman.net>
Re: [HACKERS] Need a builtin way to run all tests faster manner Tom Lane <tgl@sss.pgh.pa.us>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andres Freund <andres@anarazel.de>
Re: [HACKERS] Need a builtin way to run all tests faster manner Alvaro Herrera <alvherre@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andres Freund <andres@anarazel.de>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andres Freund <andres@anarazel.de>
Re: [HACKERS] Need a builtin way to run all tests faster manner Simon Riggs <simon@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andres Freund <andres@anarazel.de>
Re: [HACKERS] Need a builtin way to run all tests faster manner Robert Haas <robertmhaas@gmail.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andrew Dunstan <andrew.dunstan@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Magnus Hagander <magnus@hagander.net>
Re: [HACKERS] Need a builtin way to run all tests faster manner Jim Nasby <jim.nasby@openscg.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Jim Nasby <jim.nasby@openscg.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Jim Nasby <jim.nasby@openscg.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Jim Nasby <jim.nasby@openscg.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Tom Lane <tgl@sss.pgh.pa.us>
Re: [HACKERS] Need a builtin way to run all tests faster manner Jim Nasby <jim.nasby@openscg.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Magnus Hagander <magnus@hagander.net>
Re: [HACKERS] Need a builtin way to run all tests faster manner Jim Nasby <jim.nasby@openscg.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Magnus Hagander <magnus@hagander.net>
Re: [HACKERS] Need a builtin way to run all tests faster manner Jim Nasby <jim.nasby@openscg.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Magnus Hagander <magnus@hagander.net>
Re: [HACKERS] Need a builtin way to run all tests faster manner ilmari@ilmari.org (Dagfinn Ilmari Mannsåker)
Re: [HACKERS] Need a builtin way to run all tests faster manner Magnus Hagander <magnus@hagander.net>
Re: [HACKERS] Need a builtin way to run all tests faster manner Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner ilmari@ilmari.org (Dagfinn Ilmari Mannsåker)
Re: [HACKERS] Need a builtin way to run all tests faster manner Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andres Freund <andres@anarazel.de>
Re: [HACKERS] Need a builtin way to run all tests faster manner Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andres Freund <andres@anarazel.de>
Re: [HACKERS] Need a builtin way to run all tests faster manner Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Tom Lane <tgl@sss.pgh.pa.us>
Re: [HACKERS] Need a builtin way to run all tests faster manner Tom Lane <tgl@sss.pgh.pa.us>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andres Freund <andres@anarazel.de>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andres Freund <andres@anarazel.de>
Re: [HACKERS] Need a builtin way to run all tests faster manner Tom Lane <tgl@sss.pgh.pa.us>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andres Freund <andres@anarazel.de>
Re: [HACKERS] Need a builtin way to run all tests faster manner Tom Lane <tgl@sss.pgh.pa.us>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andres Freund <andres@anarazel.de>
Re: [HACKERS] Need a builtin way to run all tests faster manner Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Tom Lane <tgl@sss.pgh.pa.us>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andrew Dunstan <andrew.dunstan@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Andrew Dunstan <andrew.dunstan@2ndquadrant.com>
Re: [HACKERS] Need a builtin way to run all tests faster manner Michael Paquier <michael.paquier@gmail.com>
Peter Eisentraut writes: >>>> make check-world -j2 seems to run fine for me. > I have been pounding it a bit, and every so often the test_decoding > tests fail in mysterious ways, but otherwise it seems to work fine. I'm > curious what you are seeing. For me, it's quite unreliable at make parallelism above -j2 or so. I believe the core problem is that contrib/test_decoding's regresscheck and isolationcheck targets each want to use ./tmp_check as their --temp-instance. make has no reason to believe it shouldn't run those two sub-jobs in parallel, but when it does, we get two postmasters trying to share the same directory. This looks reasonably straightforward to solve, but I'm not entirely familiar with the code here, and am not sure what is the least ugly way to fix it. regards, tom lane
В списке pgsql-hackers по дате отправления
От: Andres Freund
Дата: