这是一个本人学习 csapp 的 learning 库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
319 B

  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. }