File: test_imp_system.cpp

package info (click to toggle)
dolphin-emu 2603%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 69,040 kB
  • sloc: cpp: 442,137; ansic: 117,979; python: 6,438; sh: 2,387; asm: 726; makefile: 394; pascal: 257; javascript: 183; perl: 97; objc: 75; xml: 8
file content (10 lines) | stat: -rw-r--r-- 194 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10

#include "../archive/test.h"

#include "libipc/imp/system.h"

TEST(system, conf) {
  auto ret = ipc::sys::conf(ipc::sys::info::page_size);
  EXPECT_TRUE(ret);
  EXPECT_GE(ret.value(), 4096);
}