diff --git a/tests/fate.sh b/tests/fate.sh
index af2e14f8bfd760b9f33e8d44845c243b9c10a403..5870f52604eb77220357859d8f018f0096b31893 100755
--- a/tests/fate.sh
+++ b/tests/fate.sh
@@ -69,6 +69,10 @@ fate()(
     ${make} ${makeopts} -k fate
 )
 
+clean(){
+    rm -r ${build} ${inst}
+}
+
 report(){
     date=$(date -u +%Y%m%d%H%M%S)
     echo "fate:0:${date}:${slot}:${version}:$1:$2" >report
@@ -105,3 +109,4 @@ configure >configure.log 2>&1 || fail $? "error configuring"
 compile   >compile.log   2>&1 || fail $? "error compiling"
 fate      >test.log      2>&1 || fail $? "error testing"
 report 0 success
+clean