summaryrefslogtreecommitdiffstats
path: root/sanity/system_light/scripts/posix_compliance/posix_compliance.sh
blob: 203c04bb0d4204f9b0483292a352a13159b4c4db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

function main ()
{
    $TOOLDIR/posix_compliance_run.sh;
    if [ $? -eq 0 ]; then
        rm -rf fstest_* && echo "removed posix compliance directories";
        return 0;
    else
        return 1;
    fi
}

main "$@"