2024-06-26 08:03:04 +00:00
|
|
|
#!/bin/sh -ex
|
|
|
|
|
|
|
|
cd ../source
|
2024-07-05 14:02:14 +00:00
|
|
|
dnf -y build-dep --spec ../mod_auth_gssapi.spec
|
2024-06-26 08:03:04 +00:00
|
|
|
|
|
|
|
# Fake a build...
|
|
|
|
mkdir -p src/.libs
|
|
|
|
cp /usr/lib64/httpd/modules/mod_auth_gssapi.so src/.libs
|
|
|
|
|
|
|
|
# ... and run the tests.
|
|
|
|
./tests/magtests.py || (cat scratchdir/tests.log scratchdir/httpd/logs/error_log ; exit -1)
|