这是一个本人学习 csapp 的 learning 库
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
//
|
|
// Created by GentleCold on 2022/9/7.
|
|
//
|
|
|
|
#include "test.h"
|
|
#include "storage_mountain/mountain.h"
|
|
|
|
void test_all() {
|
|
EXPECT_EQ_TRUE(-1 > 0x80); // compare as int
|
|
}
|
|
|
|
int main() {
|
|
test_all();
|
|
printf("%d/%d (%3.2f%%) passed\n", test_pass, test_count, test_pass * 100.0 / test_count);
|
|
return main_ret;
|
|
}
|