-
Notifications
You must be signed in to change notification settings - Fork 46
/
ut.sh
executable file
·42 lines (40 loc) · 1.48 KB
/
ut.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#/bin/bash
./clean.sh && \
./build.sh
echo '----------------------------------------' && \
./output/bin/chef_buffer_test && \
./output/bin/chef_consistent_hash_test && \
./output/bin/chef_count_dump_test && \
./output/bin/chef_crypto_md5_op_test && \
./output/bin/chef_crypto_sha1_op_test && \
./output/bin/chef_defer_test && \
./output/bin/chef_encoding_base64_op_test && \
./output/bin/chef_env_var_op_test && \
./output/bin/chef_filepath_op_test && \
./output/bin/chef_fmt_op_test && \
./output/bin/chef_hash_test && \
./output/bin/chef_lru_test && \
./output/bin/chef_os_exec_op_test && \
./output/bin/chef_skiplist_test && \
./output/bin/chef_snippet_test && \
./output/bin/chef_stringify_stl_test && \
./output/bin/chef_strings_op_test && \
./output/bin/chef_task_thread_test && \
./output/bin/chef_this_machine_op_test && \
./output/bin/chef_this_process_op_test && \
./output/bin/chef_thread_group_test && \
./output/bin/chef_thread_pool_test && \
./output/bin/chef_wait_event_test && \
./output/bin/chef_wait_event_counter_test && \
./output/bin/chef_weight_selector_test && \
./output/bin/chef_daemon_op_test && \
./output/bin/chef_stuff_op_test && \
./output/bin/chef_filelock_test && \
./output/bin/chef_crypto_sha256_op_test && \
./output/bin/chef_crypto_hmac_sha256_test && \
./output/bin/chef_be_le_op_test && \
./output/bin/chef_debug_mutex_test && \
rm -rf chef_thread_group_test.dump && \
rm -rf not_exist && \
echo '----------------------------------------' && \
echo 'all unit test succ. :)'