0
0
mirror of https://github.com/pmmp/PHP-Binaries.git synced 2025-03-01 02:21:12 +00:00
Shoghi Cervantes 48f25de924 Added tests
2014-06-30 19:12:19 +02:00

9 lines
147 B
Bash

#!/bin/bash
OUTPUT=$(readelf -d "$PHP_BINARIES/bin/php")
if [ "$OUTPUT" != "There is no dynamic section in this file." ]; then
exit 1
fi
exit 0