1*387f9dfdSAndroid Build Coastguard Workerlocal suite = require("test_helper") 2*387f9dfdSAndroid Build Coastguard Workerlocal TestDump = {} 3*387f9dfdSAndroid Build Coastguard Worker 4*387f9dfdSAndroid Build Coastguard Workerfunction TestDump:test_dump_func() 5*387f9dfdSAndroid Build Coastguard Worker local raw = "\xb7\x00\x00\x00\x01\x00\x00\x00\x95\x00\x00\x00\x00\x00\x00\x00" 6*387f9dfdSAndroid Build Coastguard Worker local b = BPF:new{text=[[int entry(void) { return 1; }]]} 7*387f9dfdSAndroid Build Coastguard Worker assert_equals(b:dump_func("entry"), raw) 8*387f9dfdSAndroid Build Coastguard Workerend 9*387f9dfdSAndroid Build Coastguard Worker 10*387f9dfdSAndroid Build Coastguard Workersuite("TestDump", TestDump) 11