File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5050 # All unit tests on the newest gcc available
5151 - param : test --vm=f44 --param=c-only --param=no-valgrind --param=no-coverage --param=no-performance
5252
53- # All unit tests on musl libc
53+ # All unit and integration tests on musl libc
5454 - param : test --vm=a321 --param=no-coverage --param=no-performance
5555
5656 # All unit tests on musl libc
Original file line number Diff line number Diff line change @@ -937,17 +937,16 @@ hrnHostPgBinPath(HrnHost *const this)
937937 {
938938 MEM_CONTEXT_TEMP_BEGIN ()
939939 {
940- // Possible bin paths for Debian, RHEL, and Alpine
940+ const String * pgPath = NULL ;
941941 const char * const version = strZ (pgVersionToStr (hrnHostPgVersion ()));
942+
942943 const String * const pgPathList [] =
943944 {
944- strNewFmt ("/usr/lib/postgresql/%s/bin" , version ),
945- strNewFmt ("/usr/pgsql-%s/bin" , version ),
946- strNewFmt ("/usr/libexec/postgresql%s" , version ),
945+ strNewFmt ("/usr/lib/postgresql/%s/bin" , version ), // Debian
946+ strNewFmt ("/usr/pgsql-%s/bin" , version ), // RHEL
947+ strNewFmt ("/usr/libexec/postgresql%s" , version ), // Alpine
947948 };
948949
949- const String * pgPath = NULL ;
950-
951950 for (unsigned int pgPathIdx = 0 ; pgPath == NULL && pgPathIdx < LENGTH_OF (pgPathList ); pgPathIdx ++ )
952951 {
953952 TRY_BEGIN ()
You can’t perform that action at this time.
0 commit comments