这是一个本人学习 csapp 的 learning 库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
319 B

1 year ago
  1. //
  2. // Created by GentleCold on 2022/9/7.
  3. //
  4. #include "test.h"
  5. #include "storage_mountain/mountain.h"
  6. void test_all() {
  7. EXPECT_EQ_TRUE(-1 > 0x80); // compare as int
  8. }
  9. int main() {
  10. test_all();
  11. printf("%d/%d (%3.2f%%) passed\n", test_pass, test_count, test_pass * 100.0 / test_count);
  12. return main_ret;
  13. }