这是一个本人学习 csapp 的 learning 库
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

15 lignes
319 B

il y a 2 ans
  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. }