forked from AdaCore/gnatcoverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcleanup.sh
24 lines (19 loc) · 803 Bytes
/
cleanup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# run this to remove most temp artifacts created
# by the testsuite execution or ongoing development.
rm -rf $(find -type d -name 'isyswspace')
rm -rf $(find -type d -name 'tmp_*')
rm -rf $(find -type d -name 'st_*')
rm -rf $(find -type d -name 'dc_*')
rm -rf $(find -type d -name 'mc_*')
rm -rf $(find -type d -name 'uc_*')
rm -rf $(find -type d -name '[0-9]')
rm -rf $(find -type d -name 'wd_*')
rm -rf $(find -type d -name 'obj')
rm -rf $(find -type d -name 'obj_*')
rm -rf $(find -type f -name 'tmp*.list')
rm -rf $(find -type f -name '*~')
rm -rf $(find -type f -name 'test.py.???' | grep -v svn)
rm -rf $(find -type f -name '*.adb.*' | grep -v svn)
rm -rf $(find -type f -name '*.dump' | grep -v svn)
rm -rf $(find -type d -name 'memcheck.log')
rm -rf $(find -type d -name 'callgrind-*.log')