-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclean-all.sh
More file actions
executable file
·38 lines (35 loc) · 1.13 KB
/
clean-all.sh
File metadata and controls
executable file
·38 lines (35 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
function removeModules {
rmmod bewalgo_compress_test_U64
rmmod bewalgo_compress_test_time_U64
rmmod bewalgo_compress_test_U32
rmmod bewalgo_compress_test_time_U32
rmmod bewalgo_compress_test_LZ4
rmmod bewalgo_compress_test_time_LZ4
rmmod bewalgo_parallel_compressor
rmmod bewalgo_parallel_compress_worker
rmmod bewalgo_linear_compressor_U32
rmmod bewalgo_page_compressor_U32
rmmod bewalgo_linear_compressor_U64
rmmod bewalgo_page_compressor_U64
rmmod lz4_compressor
rmmod lz4_linear_compress
rmmod lz4_linear_decompress
rmmod lz4_pages_compress
rmmod lz4_pages_decompress
rmmod lz4_linear_hc_compress
rmmod linear_compressor_memcpy
rmmod pages_compressor_memcpy
}
function cleanAll {
removeModules
cd parallel/test && make clean && cd ../..
cd lz4/test && make clean && cd ../..
cd memcpy/test && make clean && cd ../..
cd bewalgo/test && make clean && cd ../..
cd bewalgo-if-vs-terniary/test && make clean && cd ../..
cd bewalgo-boolean-vs-binary-operator/test && make clean && cd ../..
cd bewalgo-no-inline/test && make clean && cd ../..
cd bewalgo-find-match-only/test && make clean && cd ../..
}
cleanAll