Console Output

Skipping 113 KB.. Full Log
1: +#include <linux/bpf.h>
1: +#include <net/if.h>
1:  #include <sys/stat.h>
1:  #include <unistd.h>
1: -#include <vector>
1: +#include <map>
1:  #include <set>
1: -#include <linux/bpf.h>
1: -#include <net/if.h>
1: +#include <string>
1: +#include <vector>
1:  
1:  #include <llvm/ExecutionEngine/MCJIT.h>
1:  #include <llvm/ExecutionEngine/SectionMemoryManager.h>
1: @@ -306,8 +306,8 @@ int BPFModule::create_maps(std::map<std::string, std::pair<int, int>> &map_tids,
1:        if (inner_maps.find(map_name) == inner_maps.end())
1:          continue;
1:        if (inner_map_name.size()) {
1: -        fprintf(stderr, "inner map %s has inner map %s\n",
1: -                map_name, inner_map_name.c_str());
1: +        fprintf(stderr, "inner map %s has inner map %s\n", map_name,
1: +                inner_map_name.c_str());
1:          return -1;
1:        }
1:      } else {
1: @@ -386,8 +386,8 @@ int BPFModule::load_maps(sec_map_def &sections) {
1:            }
1:          }
1:  
1: -        int ret = btf_->get_map_tids(map_name, expected_ksize,
1: -                                     expected_vsize, &key_tid, &value_tid);
1: +        int ret = btf_->get_map_tids(map_name, expected_ksize, expected_vsize,
1: +                                     &key_tid, &value_tid);
1:          if (ret)
1:            continue;
1:  
1: diff --git a/src/cc/frontends/clang/b_frontend_action.cc b/src/cc/frontends/clang/b_frontend_action.cc
1: index 5697f2f9..39d83201 100644
1: --- a/src/cc/frontends/clang/b_frontend_action.cc
1: +++ b/src/cc/frontends/clang/b_frontend_action.cc
1: @@ -1289,10 +1289,11 @@ bool BTypeVisitor::VisitVarDecl(VarDecl *Decl) {
1:  
1:        table.type = map_type;
1:        table.fake_fd = fe_.get_next_fake_fd();
1: -      fe_.add_map_def(table.fake_fd, std::make_tuple((int)map_type, std::string(table.name),
1: -                      (int)table.key_size, (int)table.leaf_size,
1: -                      (int)table.max_entries, table.flags, pinned_id,
1: -                      inner_map_name));
1: +      fe_.add_map_def(table.fake_fd,
1: +                      std::make_tuple((int)map_type, std::string(table.name),
1: +                                      (int)table.key_size, (int)table.leaf_size,
1: +                                      (int)table.max_entries, table.flags,
1: +                                      pinned_id, inner_map_name));
1:      }
1:  
1:      if (!table.is_extern)
1: diff --git a/src/cc/frontends/clang/b_frontend_action.h b/src/cc/frontends/clang/b_frontend_action.h
1: index cea13cc0..c2250e68 100644
1: --- a/src/cc/frontends/clang/b_frontend_action.h
1: +++ b/src/cc/frontends/clang/b_frontend_action.h
1: @@ -174,8 +174,9 @@ class BFrontendAction : public clang::ASTFrontendAction {
1:    void DoMiscWorkAround();
1:    // negative fake_fd to be different from real fd in bpf_pseudo_fd.
1:    int get_next_fake_fd() { return next_fake_fd_--; }
1: -  void add_map_def(int fd,
1: -    std::tuple<int, std::string, int, int, int, int, unsigned int, std::string> map_def) {
1: +  void add_map_def(int fd, std::tuple<int, std::string, int, int, int, int,
1: +                                      unsigned int, std::string>
1: +                               map_def) {
1:      fake_fd_map_[fd] = move(map_def);
1:    }
1:  
1: diff --git a/src/cc/table_storage.h b/src/cc/table_storage.h
1: index b83fbdd7..7f22c711 100644
1: --- a/src/cc/table_storage.h
1: +++ b/src/cc/table_storage.h
1: @@ -27,8 +27,9 @@
1:  
1:  namespace ebpf {
1:  
1: -typedef std::map<int, std::tuple<int, std::string, int, int, int, int, unsigned int, std::string>>
1: -        fake_fd_map_def;
1: +typedef std::map<int, std::tuple<int, std::string, int, int, int, int,
1: +                                 unsigned int, std::string>>
1: +    fake_fd_map_def;
1:  
1:  class TableStorageImpl;
1:  class TableStorageIteratorImpl;
1: Ignoring changes in the following files (wrong extension):
1:     tests/python/test_map_in_map.py
1:     src/python/bcc/table.py
1:     docs/reference_guide.md
1:     tests/cc/CMakeLists.txt
1: Running clang-format on the following files:
1:     src/cc/frontends/clang/b_frontend_action.h
1:     src/cc/api/BPF.h
1:     src/cc/table_storage.h
1:     src/cc/export/helpers.h
1:     src/cc/frontends/clang/b_frontend_action.cc
1:     src/cc/api/BPFTable.cc
1:     tests/cc/test_map_in_map.cc
1:     src/cc/bpf_module.cc
1:     src/cc/bpf_module.h
1:     src/cc/api/BPFTable.h
1:     src/cc/api/BPF.cc
1: old tree: c1d1e3cfb14941d50e9594bcd6950aebdec2884f
1: new tree: e3e6af50e12e35bfa5469c2909ada22cfe52f1b6
 1/40 Test  #1: style-check ......................   Passed    2.83 sec
test 2
      Start  2: c_test_static

2: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "c_test_static" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/cc/test_static"
2: Test timeout computed to be: 10000000
2: clang -cc1 -triple x86_64-unknown-linux-gnu -emit-llvm-bc -emit-llvm-uselists -disable-free -disable-llvm-verifier -discard-value-names -main-file-name main.c -mrelocation-model static -mthread-model posix -fmath-errno -masm-verbose -mconstructor-aliases -fuse-init-array -target-cpu x86-64 -momit-leaf-frame-pointer -dwarf-column-info -debugger-tuning=gdb -coverage-notes-file /usr/src/kernels/4.15.16-200.fc26.x86_64/main.gcno -nostdsysteminc -nobuiltininc -resource-dir ../lib64/clang/4.0.1 -isystem /virtual/lib/clang/include -include ./include/linux/kconfig.h -include /virtual/include/bcc/bpf.h -include /virtual/include/bcc/helpers.h -isystem /virtual/include -I /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/cc -D __BPF_TRACING__ -I /lib/modules/4.15.16-200.fc26.x86_64/build/arch/x86/include -I /lib/modules/4.15.16-200.fc26.x86_64/build/arch/x86/include/generated/uapi -I /lib/modules/4.15.16-200.fc26.x86_64/build/arch/x86/include/generated -I /lib/modules/4.15.16-200.fc26.x86_64/build/include -I /lib/modules/4.15.16-200.fc26.x86_64/build/./arch/x86/include/uapi -I /lib/modules/4.15.16-200.fc26.x86_64/build/arch/x86/include/generated/uapi -I /lib/modules/4.15.16-200.fc26.x86_64/build/include/uapi -I /lib/modules/4.15.16-200.fc26.x86_64/build/include/generated -I /lib/modules/4.15.16-200.fc26.x86_64/build/include/generated/uapi -I ./arch/x86/include -I arch/x86/include/generated/uapi -I arch/x86/include/generated -I include -I ./arch/x86/include/uapi -I arch/x86/include/generated/uapi -I ./include/uapi -I include/generated/uapi -D __KERNEL__ -D __HAVE_BUILTIN_BSWAP16__ -D __HAVE_BUILTIN_BSWAP32__ -D __HAVE_BUILTIN_BSWAP64__ -O2 -Wno-deprecated-declarations -Wno-gnu-variable-sized-type-not-at-end -Wno-pragma-once-outside-header -Wno-address-of-packed-member -Wno-unknown-warning-option -Wno-unused-value -Wno-pointer-sign -fdebug-compilation-dir /usr/src/kernels/4.15.16-200.fc26.x86_64 -ferror-limit 19 -fmessage-length 0 -fobjc-runtime=gcc -fdiagnostics-show-option -vectorize-loops -vectorize-slp -o main.bc -x c /virtual/main.c
2: #if defined(BPF_LICENSE)
2: #error BPF_LICENSE cannot be specified through cflags
2: #endif
2: #if !defined(CONFIG_CC_STACKPROTECTOR)
2: #if defined(CONFIG_CC_STACKPROTECTOR_AUTO) \
2:     || defined(CONFIG_CC_STACKPROTECTOR_REGULAR) \
2:     || defined(CONFIG_CC_STACKPROTECTOR_STRONG)
2: #define CONFIG_CC_STACKPROTECTOR
2: #endif
2: #endif
2: BPF_TABLE("array", int, int, stats, 10);
2: 
2: #include <bcc/footer.h>
2: Running from kernel directory at: /lib/modules/4.15.16-200.fc26.x86_64/source
 2/40 Test  #2: c_test_static ....................   Passed    2.30 sec
test 3
      Start  3: test_libbcc

3: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "c_test_all" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/cc/test_libbcc"
3: Test timeout computed to be: 10000000
3: /virtual/main.c:2:7: error: map not found: /sys/fs/bpf/test_pinned_table
3:       BPF_TABLE_PINNED("hash", u64, u64, ids, 1024, "/sys/fs/bpf/test_pinned_table");
3:       ^
3: /virtual/include/bcc/helpers.h:98:92: note: expanded from macro 'BPF_TABLE_PINNED'
3: #define BPF_TABLE_PINNED(_table_type, _key_type, _leaf_type, _name, _max_entries, _pinned) \
3:                                                                                            ^
3: /virtual/include/bcc/helpers.h:95:76: note: expanded from macro '\
3: BPF_TABLE'
3: #define BPF_TABLE(_table_type, _key_type, _leaf_type, _name, _max_entries) \
3:                                                                            ^
3: /virtual/include/bcc/helpers.h:90:4: note: expanded from macro '\
3: BPF_F_TABLE'
3: }; \
3:    ^
3: 1 error generated.
3: Parse error:
3:     4@i%ra+1r
3: -------^
3: ===============================================================================
3: All tests passed (631 assertions in 36 test cases)
3: 
 3/40 Test  #3: test_libbcc ......................   Passed   11.39 sec
test 4
      Start  4: py_test_stat1_b

4: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_stat1_b" "namespace" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_stat1.py" "test_stat1.b" "proto.b"
4: Test timeout computed to be: 10000000
4: Actual changes:
4: tx-checksumming: off
4: 	tx-checksum-ip-generic: off
4: 	tx-checksum-sctp: off
4: tcp-segmentation-offload: off
4: 	tx-tcp-segmentation: off [requested on]
4: 	tx-tcp-ecn-segmentation: off [requested on]
4: 	tx-tcp-mangleid-segmentation: off [requested on]
4: 	tx-tcp6-segmentation: off [requested on]
4: .E
4: ======================================================================
4: ERROR: test_ping (__main__.TestBPFSocket)
4: ----------------------------------------------------------------------
4: Traceback (most recent call last):
4:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_stat1.py", line 32, in setUp
4:     b = BPF(arg1, arg2, debug=0)
4:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
4:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
4: Exception: Failed to compile BPF module test_stat1.b
4: 
4: ----------------------------------------------------------------------
4: Ran 2 tests in 0.244s
4: 
4: FAILED (errors=1)
4: Failed
 4/40 Test  #4: py_test_stat1_b ..................***Failed    1.31 sec
test 5
      Start  5: py_test_bpf_log

5: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_bpf_prog" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_bpf_log.py"
5: Test timeout computed to be: 10000000
5: Failed
 5/40 Test  #5: py_test_bpf_log ..................***Failed    0.95 sec
test 6
      Start  6: py_test_stat1_c

6: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_stat1_c" "namespace" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_stat1.py" "test_stat1.c"
6: Test timeout computed to be: 10000000
6: Actual changes:
6: tx-checksumming: off
6: 	tx-checksum-ip-generic: off
6: 	tx-checksum-sctp: off
6: tcp-segmentation-offload: off
6: 	tx-tcp-segmentation: off [requested on]
6: 	tx-tcp-ecn-segmentation: off [requested on]
6: 	tx-tcp-mangleid-segmentation: off [requested on]
6: 	tx-tcp6-segmentation: off [requested on]
6: .PING 172.16.1.1 (172.16.1.1) 56(84) bytes of data.
6: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 
6: --- 172.16.1.1 ping statistics ---
6: 100 packets transmitted, 100 received, 0% packet loss, time 1ms
6: rtt min/avg/max/mdev = 0.004/0.006/0.073/0.006 ms, ipg/ewma 0.016/0.006 ms
6: .
6: ----------------------------------------------------------------------
6: Ran 2 tests in 0.371s
6: 
6: OK
 6/40 Test  #6: py_test_stat1_c ..................   Passed    0.84 sec
test 7
      Start  7: py_test_xlate1_c

7: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_xlate1_c" "namespace" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_xlate1.py" "test_xlate1.c"
7: Test timeout computed to be: 10000000
7: Actual changes:
7: tx-checksumming: off
7: 	tx-checksum-ip-generic: off
7: 	tx-checksum-sctp: off
7: tcp-segmentation-offload: off
7: 	tx-tcp-segmentation: off [requested on]
7: 	tx-tcp-ecn-segmentation: off [requested on]
7: 	tx-tcp-mangleid-segmentation: off [requested on]
7: 	tx-tcp6-segmentation: off [requested on]
7: E
7: ======================================================================
7: ERROR: test_xlate (__main__.TestBPFFilter)
7: ----------------------------------------------------------------------
7: Traceback (most recent call last):
7:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_xlate1.py", line 21, in setUp
7:     b = BPF(arg1, arg2, debug=0)
7:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
7:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
7: Exception: Failed to compile BPF module test_xlate1.c
7: 
7: ----------------------------------------------------------------------
7: Ran 1 test in 0.131s
7: 
7: FAILED (errors=1)
7: Failed
 7/40 Test  #7: py_test_xlate1_c .................***Failed    0.79 sec
test 8
      Start  8: py_test_call1

8: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_call1_c" "namespace" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_call1.py" "test_call1.c"
8: Test timeout computed to be: 10000000
8: Actual changes:
8: tx-checksumming: off
8: 	tx-checksum-ip-generic: off
8: 	tx-checksum-sctp: off
8: tcp-segmentation-offload: off
8: 	tx-tcp-segmentation: off [requested on]
8: 	tx-tcp-ecn-segmentation: off [requested on]
8: 	tx-tcp-mangleid-segmentation: off [requested on]
8: 	tx-tcp6-segmentation: off [requested on]
8: .
8: ----------------------------------------------------------------------
8: Ran 1 test in 0.582s
8: 
8: OK
 8/40 Test  #8: py_test_call1 ....................   Passed    1.31 sec
test 9
      Start  9: py_test_trace1

9: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_trace1" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_trace1.py" "test_trace1.b" "kprobe.b"
9: Test timeout computed to be: 10000000
9: .
9: ----------------------------------------------------------------------
9: Ran 1 test in 0.307s
9: 
9: OK
9: ('fd 8:', 'stat1 0', 'stat2 1')
9: ('fd a:', 'stat1 200', 'stat2 100')
9: ('fd 9:', 'stat1 1', 'stat2 1')
9: ('fd ffff8b9715dd1800:', 'stat1 4', 'stat2 0')
 9/40 Test  #9: py_test_trace1 ...................   Passed    0.46 sec
test 10
      Start 10: py_test_trace2

10: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_trace2" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_trace2.py"
10: Test timeout computed to be: 10000000
10: E
10: ======================================================================
10: ERROR: test_sched1 (__main__.TestTracingEvent)
10: ----------------------------------------------------------------------
10: Traceback (most recent call last):
10:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_trace2.py", line 32, in setUp
10:     b = BPF(text=text, debug=0)
10:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
10:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
10: Exception: Failed to compile BPF module <text>
10: 
10: ----------------------------------------------------------------------
10: Ran 1 test in 3.993s
10: 
10: FAILED (errors=1)
10: Failed
10/40 Test #10: py_test_trace2 ...................***Failed    4.07 sec
test 11
      Start 11: py_test_trace3_c

11: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_trace3_c" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_trace3.py" "test_trace3.c"
11: Test timeout computed to be: 10000000
11: 1024+0 records in
11: 1024+0 records out
11: 4194304 bytes (4.2 MB, 4.0 MiB) copied, 0.00477491 s, 878 MB/s
11: 1024+0 records in
11: 1024+0 records out
11: 4194304 bytes (4.2 MB, 4.0 MiB) copied, 0.00546604 s, 767 MB/s
11: ('latency 0:', 'count 0')
11: ('latency 1:', 'count 0')
11: ('latency 2:', 'count 0')
11: ('latency 3:', 'count 0')
11: ('latency 4:', 'count 0')
11: ('latency 5:', 'count 0')
11: ('latency 6:', 'count 0')
11: ('latency 7:', 'count 0')
11: ('latency 8:', 'count 0')
11: ('latency 9:', 'count 0')
11: ('latency 10:', 'count 0')
11: ('latency 11:', 'count 0')
11: ('latency 12:', 'count 0')
11: ('latency 13:', 'count 0')
11: ('latency 14:', 'count 0')
11: ('latency 15:', 'count 0')
11: ('latency 16:', 'count 0')
11: ('latency 17:', 'count 0')
11: ('latency 18:', 'count 0')
11: ('latency 19:', 'count 0')
11: ('latency 20:', 'count 0')
11: ('latency 21:', 'count 0')
11: ('latency 22:', 'count 0')
11: ('latency 23:', 'count 0')
11: ('latency 24:', 'count 0')
11: ('latency 25:', 'count 0')
11: ('latency 26:', 'count 0')
11: ('latency 27:', 'count 0')
11: ('latency 28:', 'count 0')
11: ('latency 29:', 'count 0')
11: ('latency 30:', 'count 0')
11: ('latency 31:', 'count 0')
11: ('latency 32:', 'count 0')
11: ('latency 33:', 'count 0')
11: ('latency 34:', 'count 0')
11: ('latency 35:', 'count 0')
11: ('latency 36:', 'count 0')
11: ('latency 37:', 'count 0')
11: ('latency 38:', 'count 0')
11: ('latency 39:', 'count 0')
11: ('latency 40:', 'count 0')
11: ('latency 41:', 'count 0')
11: ('latency 42:', 'count 0')
11: ('latency 43:', 'count 0')
11: ('latency 44:', 'count 0')
11: ('latency 45:', 'count 0')
11: ('latency 46:', 'count 4')
11: ('latency 47:', 'count 0')
11: ('latency 48:', 'count 0')
11: ('latency 49:', 'count 0')
11: ('latency 50:', 'count 0')
11: ('latency 51:', 'count 0')
11: ('latency 52:', 'count 0')
11: ('latency 53:', 'count 0')
11: ('latency 54:', 'count 0')
11: ('latency 55:', 'count 0')
11: ('latency 56:', 'count 2')
11: ('latency 57:', 'count 16')
11: ('latency 58:', 'count 5')
11: ('latency 59:', 'count 23')
11: ('latency 60:', 'count 10')
11: ('latency 61:', 'count 47')
11: ('latency 62:', 'count 13')
11: ('latency 63:', 'count 62')
11: ('latency 64:', 'count 11')
11: ('latency 65:', 'count 14')
11: ('latency 66:', 'count 83')
11: ('latency 67:', 'count 64')
11: ('latency 68:', 'count 69')
11: ('latency 69:', 'count 16')
11: ('latency 70:', 'count 0')
11: ('latency 71:', 'count 0')
11: ('latency 72:', 'count 1')
11: ('latency 73:', 'count 1')
11: ('latency 74:', 'count 0')
11: ('latency 75:', 'count 0')
11: ('latency 76:', 'count 0')
11: ('latency 77:', 'count 0')
11: ('latency 78:', 'count 0')
11: ('latency 79:', 'count 0')
11: ('latency 80:', 'count 0')
11: ('latency 81:', 'count 0')
11: ('latency 82:', 'count 0')
11: ('latency 83:', 'count 0')
11: ('latency 84:', 'count 0')
11: ('latency 85:', 'count 0')
11: ('latency 86:', 'count 0')
11: ('latency 87:', 'count 0')
11: ('latency 88:', 'count 0')
11: ('latency 89:', 'count 0')
11: ('latency 90:', 'count 0')
11: ('latency 91:', 'count 0')
11: ('latency 92:', 'count 0')
11: ('latency 93:', 'count 0')
11: ('latency 94:', 'count 0')
11: ('latency 95:', 'count 0')
11: ('latency 96:', 'count 0')
11: ('latency 97:', 'count 0')
11: ('latency 98:', 'count 0')
11: ('latency 99:', 'count 0')
11: .
11: ----------------------------------------------------------------------
11: Ran 1 test in 2.116s
11: 
11: OK
11/40 Test #11: py_test_trace3_c .................   Passed    2.25 sec
test 12
      Start 12: py_test_trace4

12: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_trace4" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_trace4.py"
12: Test timeout computed to be: 10000000
12: EE
12: ======================================================================
12: ERROR: test_periods (__main__.TestKprobeReplace)
12: ----------------------------------------------------------------------
12: Traceback (most recent call last):
12:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_trace4.py", line 44, in setUp
12:     self.b = BPF(text=b"int empty(void *ctx) { return 0; }")
12:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
12:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
12: Exception: Failed to compile BPF module <text>
12: 
12: ======================================================================
12: ERROR: test_send1 (__main__.TestKprobeRgx)
12: ----------------------------------------------------------------------
12: Traceback (most recent call last):
12:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_trace4.py", line 30, in setUp
12:     """)
12:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
12:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
12: Exception: Failed to compile BPF module <text>
12: 
12: ----------------------------------------------------------------------
12: Ran 2 tests in 0.229s
12: 
12: FAILED (errors=2)
12: Failed
12/40 Test #12: py_test_trace4 ...................***Failed    0.31 sec
test 13
      Start 13: py_test_trace_maxactive

13: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_trace_maxactive" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_trace_maxactive.py"
13: Test timeout computed to be: 10000000
13: E
13: ======================================================================
13: ERROR: test_send1 (__main__.TestKprobeMaxactive)
13: ----------------------------------------------------------------------
13: Traceback (most recent call last):
13:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_trace_maxactive.py", line 26, in setUp
13:     """)
13:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
13:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
13: Exception: Failed to compile BPF module <text>
13: 
13: ----------------------------------------------------------------------
13: Ran 1 test in 0.121s
13: 
13: FAILED (errors=1)
13: Failed
13/40 Test #13: py_test_trace_maxactive ..........***Failed    0.20 sec
test 14
      Start 14: py_test_probe_count

14: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_probe_count" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_probe_count.py"
14: Test timeout computed to be: 10000000
14: ...cannot attach kprobe, probe entry may not exist
14: ...
14: ----------------------------------------------------------------------
14: Ran 6 tests in 3.075s
14: 
14: OK
14: Error in atexit._run_exitfuncs:
14: Traceback (most recent call last):
14:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
14:     func(*targs, **kargs)
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
14:     os.close(fn.fd)
14: OSError: [Errno 9] Bad file descriptor
14: Error in atexit._run_exitfuncs:
14: Traceback (most recent call last):
14:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
14:     func(*targs, **kargs)
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
14:     os.close(fn.fd)
14: OSError: [Errno 9] Bad file descriptor
14: Error in atexit._run_exitfuncs:
14: Traceback (most recent call last):
14:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
14:     func(*targs, **kargs)
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
14:     os.close(fn.fd)
14: OSError: [Errno 9] Bad file descriptor
14: Error in atexit._run_exitfuncs:
14: Traceback (most recent call last):
14:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
14:     func(*targs, **kargs)
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
14:     os.close(fn.fd)
14: OSError: [Errno 9] Bad file descriptor
14: Error in sys.exitfunc:
14: Traceback (most recent call last):
14:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
14:     func(*targs, **kargs)
14:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
14:     os.close(fn.fd)
14: OSError: [Errno 9] Bad file descriptor
14/40 Test #14: py_test_probe_count ..............   Passed    3.16 sec
test 15
      Start 15: py_test_debuginfo

15: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_test_debuginfo" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_debuginfo.py"
15: Test timeout computed to be: 10000000
15: ......
15: ----------------------------------------------------------------------
15: Ran 6 tests in 0.625s
15: 
15: OK
15/40 Test #15: py_test_debuginfo ................   Passed    0.70 sec
test 16
      Start 16: py_test_brb

16: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_brb_c" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_brb.py" "test_brb.c"
16: Test timeout computed to be: 10000000
16: net.ipv4.ip_forward = 1
16: ARPING 100.1.1.254 from 100.1.1.1 eth0
16: Unicast reply from 100.1.1.254 [2E:74:12:99:69:B8]  0.672ms
16: Sent 1 probes (1 broadcast(s))
16: Received 1 response(s)
16: ARPING 200.1.1.254 from 200.1.1.1 eth0
16: Unicast reply from 200.1.1.254 [0E:44:1F:C7:75:FD]  0.694ms
16: Sent 1 probes (1 broadcast(s))
16: Received 1 response(s)
16: PING 200.1.1.1 (200.1.1.1) 56(84) bytes of data.
16: 64 bytes from 200.1.1.1: icmp_seq=1 ttl=63 time=0.100 ms
16: 64 bytes from 200.1.1.1: icmp_seq=2 ttl=63 time=0.106 ms
16: 
16: --- 200.1.1.1 ping statistics ---
16: 2 packets transmitted, 2 received, 0% packet loss, time 1063ms
16: rtt min/avg/max/mdev = 0.100/0.103/0.106/0.003 ms
16: [ ID] Interval       Transfer     Bandwidth
16: [  7]  0.0- 1.0 sec  3.88 GBytes  33.3 Gbits/sec
16: [ ID] Interval       Transfer     Bandwidth
16: [ 10]  0.0- 1.0 sec  3.88 GBytes  33.0 Gbits/sec
16: Starting netserver with host 'IN(6)ADDR_ANY' port '12865' and family AF_UNSPEC
16: MIGRATED TCP STREAM TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to 200.1.1.1 () port 0 AF_INET
16: Recv   Send    Send                          
16: Socket Socket  Message  Elapsed              
16: Size   Size    Size     Time     Throughput  
16: bytes  bytes   bytes    secs.    10^6bits/sec  
16: 
16:  87380  16384  65160    1.00     32280.28   
16: MIGRATED TCP REQUEST/RESPONSE TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to 200.1.1.1 () port 0 AF_INET : first burst 0
16: Local /Remote
16: Socket Size   Request  Resp.   Elapsed  Trans.
16: Send   Recv   Size     Size    Time     Rate         
16: bytes  Bytes  bytes    bytes   secs.    per sec   
16: 
16: 16384  87380  1        1       1.00     29507.08   
16: 16384  87380 
16: .
16: ----------------------------------------------------------------------
16: Ran 1 test in 7.457s
16: 
16: OK
16/40 Test #16: py_test_brb ......................   Passed    7.65 sec
test 17
      Start 17: py_test_brb2

17: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_brb2_c" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_brb2.py" "test_brb2.c"
17: Test timeout computed to be: 10000000
17: E
17: ======================================================================
17: ERROR: test_brb2 (__main__.TestBPFSocket)
17: ----------------------------------------------------------------------
17: Traceback (most recent call last):
17:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_brb2.py", line 193, in test_brb2
17:     if self.br1 in ipdb.interfaces: ipdb.interfaces[self.br1].remove().commit()
17: AttributeError: 'TestBPFSocket' object has no attribute 'br1'
17: 
17: ----------------------------------------------------------------------
17: Ran 1 test in 0.134s
17: 
17: FAILED (errors=1)
17: Failed
17/40 Test #17: py_test_brb2 .....................***Failed    0.28 sec
test 18
      Start 18: py_test_clang

18: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_clang" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py"
18: Test timeout computed to be: 10000000
18: EEEEEEEEEEEEEEEEE/virtual/main.c:2:1: error: field has incomplete type 'struct key_t'
18: BPF_HASH(drops, struct key_t);
18: ^
18: /virtual/include/bcc/helpers.h:176:48: note: expanded from macro 'BPF_HASH'
18:   BPF_HASHX(__VA_ARGS__, BPF_HASH4, BPF_HASH3, BPF_HASH2, BPF_HASH1)(__VA_ARGS__)
18:                                                ^
18: /virtual/main.c:2:24: note: forward declaration of 'struct key_t'
18: BPF_HASH(drops, struct key_t);
18:                        ^
18: /virtual/main.c:2:1: error: field has incomplete type 'struct key_t'
18: BPF_HASH(drops, struct key_t);
18: ^
18: /virtual/include/bcc/helpers.h:176:48: note: expanded from macro 'BPF_HASH'
18:   BPF_HASHX(__VA_ARGS__, BPF_HASH4, BPF_HASH3, BPF_HASH2, BPF_HASH1)(__VA_ARGS__)
18:                                                ^
18: /virtual/main.c:2:24: note: forward declaration of 'struct key_t'
18: BPF_HASH(drops, struct key_t);
18:                        ^
18: 2 errors generated.
18: .E/virtual/main.c:6:12: error: cannot call non-static helper function
18:     return bar();
18:            ^
18: 1 error generated.
18: .EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE/virtual/main.c:7:12: warning: incompatible pointer to integer conversion returning 'u32 *' (aka 'unsigned int *') from a function with result type 'int' [-Wint-conversion]
18:     return *(&skp->sk_daddr);
18:            ^~~~~~~~~~~~~~~~~
18: 1 warning generated.
18: EEEEEEEEEEE.EEEE/virtual/main.c:1:30: error: expected expression
18: int failure(void *ctx) { if (); return 0; }
18:                              ^
18: 1 error generated.
18: .E/virtual/main.c:3:73: error: too many arguments, bcc only supports in-register parameters
18: int many(struct pt_regs *ctx, int a, int b, int c, int d, int e, int f, int g) {
18:                                                                         ^
18: 1 error generated.
18: .EEE
18: ======================================================================
18: ERROR: test_arbitrary_increment_simple (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1226, in test_arbitrary_increment_simple
18:     """)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_blk_start_request (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 260, in test_blk_start_request
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_bpf_dins_pkt_rewrite (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 799, in test_bpf_dins_pkt_rewrite
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_bpf_hash (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 269, in test_bpf_hash
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_call_macro_arg (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 643, in test_call_macro_arg
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_cflags (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 598, in test_cflags
18:     b = BPF(text=text, cflags=["-DMYFLAG"])
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_char_array_probe (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 324, in test_char_array_probe
18:     }""")
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_complex (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 40, in test_complex
18:     b = BPF(src_file="test_clang_complex.c", debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module test_clang_complex.c
18: 
18: ======================================================================
18: ERROR: test_complex_leaf_types (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 589, in test_complex_leaf_types
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_consecutive_probe_read (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 290, in test_consecutive_probe_read
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_enumerations (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 946, in test_enumerations
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_exported_maps (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 601, in test_exported_maps
18:     b1 = BPF(text="""BPF_TABLE_PUBLIC("hash", int, int, table1, 10);""")
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_ext_ptr_from_helper (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 810, in test_ext_ptr_from_helper
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_ext_ptr_maps1 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 693, in test_ext_ptr_maps1
18:     b = BPF(text=bpf_text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_ext_ptr_maps2 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 722, in test_ext_ptr_maps2
18:     b = BPF(text=bpf_text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_ext_ptr_maps_indirect (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 781, in test_ext_ptr_maps_indirect
18:     b = BPF(text=bpf_text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_ext_ptr_maps_reverse (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 751, in test_ext_ptr_maps_reverse
18:     b = BPF(text=bpf_text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_int128_types (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 952, in test_int128_types
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_iosnoop (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 248, in test_iosnoop
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_map_insert (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 886, in test_map_insert
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_nested_probe_read (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 303, in test_nested_probe_read
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_nested_probe_read_deref (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 316, in test_nested_probe_read_deref
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_nested_union (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 613, in test_nested_union
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_no_probe_read_addrof (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1128, in test_no_probe_read_addrof
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_packed_structure (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1249, in test_packed_structure
18:     """)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_padding_types (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 985, in test_padding_types
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_paren_probe_read (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 566, in test_paren_probe_read
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_printk (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 53, in test_printk
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_printk_2s (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 869, in test_printk_2s
18:     BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_printk_f (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 834, in test_printk_f
18:     BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_printk_lf (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 851, in test_printk_lf
18:     BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_member_expr (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 457, in test_probe_member_expr
18:     }""")
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_member_expr_deref (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 444, in test_probe_member_expr_deref
18:     }""")
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read1 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 65, in test_probe_read1
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read2 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 76, in test_probe_read2
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read3 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 88, in test_probe_read3
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read4 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 100, in test_probe_read4
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_array_accesses1 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1139, in test_probe_read_array_accesses1
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_array_accesses2 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1150, in test_probe_read_array_accesses2
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_array_accesses3 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1161, in test_probe_read_array_accesses3
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_array_accesses4 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1171, in test_probe_read_array_accesses4
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_array_accesses5 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1181, in test_probe_read_array_accesses5
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_array_accesses6 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1194, in test_probe_read_array_accesses6
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_array_accesses7 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1204, in test_probe_read_array_accesses7
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_array_accesses8 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1214, in test_probe_read_array_accesses8
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_ctx_array (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1023, in test_probe_read_ctx_array
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_helper (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 345, in test_probe_read_helper
18:     """)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_keys (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 158, in test_probe_read_keys
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_kprobe_ctx (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1011, in test_probe_read_kprobe_ctx
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_multiple_return (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1079, in test_probe_read_multiple_return
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_nested_deref (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 484, in test_probe_read_nested_deref
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_nested_deref2 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 499, in test_probe_read_nested_deref2
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_nested_deref_func (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 517, in test_probe_read_nested_deref_func
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_nested_member1 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 528, in test_probe_read_nested_member1
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_nested_member2 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 542, in test_probe_read_nested_member2
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_nested_member3 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 555, in test_probe_read_nested_member3
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_return (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1058, in test_probe_read_return
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_return_call (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1110, in test_probe_read_return_call
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_return_expr (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1095, in test_probe_read_return_expr
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_tc_ctx (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 1042, in test_probe_read_tc_ctx
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_tracepoint_context (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 999, in test_probe_read_tracepoint_context
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_whitelist1 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 118, in test_probe_read_whitelist1
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_read_whitelist2 (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 136, in test_probe_read_whitelist2
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_simple_assign (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 419, in test_probe_simple_assign
18:     }""")
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_simple_member_assign (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 431, in test_probe_simple_member_assign
18:     }""")
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_probe_struct_assign (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 380, in test_probe_struct_assign
18:     """)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_prog_array_delete (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 900, in test_prog_array_delete
18:     b1 = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_sscanf (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 168, in test_sscanf
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_sscanf_array (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 186, in test_sscanf_array
18:     b = BPF(text=text, debug=0)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_sscanf_string (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 211, in test_sscanf_string
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_task_switch (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 405, in test_task_switch
18:     """)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_unary_operator (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 821, in test_unary_operator
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_unop_probe_read (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 471, in test_unop_probe_read
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ======================================================================
18: ERROR: test_update_macro_arg (__main__.TestClang)
18: ----------------------------------------------------------------------
18: Traceback (most recent call last):
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_clang.py", line 663, in test_update_macro_arg
18:     b = BPF(text=text)
18:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
18:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
18: Exception: Failed to compile BPF module <text>
18: 
18: ----------------------------------------------------------------------
18: Ran 79 tests in 73.914s
18: 
18: FAILED (errors=74)
18: Failed
18/40 Test #18: py_test_clang ....................***Failed   74.02 sec
test 19
      Start 19: py_test_histogram

19: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_histogram" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_histogram.py"
19: Test timeout computed to be: 10000000
19: 
19: Bucket ptr = 'java'
19:      value               : count     distribution
19:          0 -> 1          : 28       |****************************************|
19: 
19: Bucket ptr = 'chronyd'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 2        |****************************************|
19: 
19: Bucket ptr = 'kworker/1:1H'
19:                value                         : count     distribution
19:                    0 -> 1                    : 0        |                    |
19:                    2 -> 3                    : 0        |                    |
19:                    4 -> 7                    : 0        |                    |
19:                    8 -> 15                   : 0        |                    |
19:                   16 -> 31                   : 0        |                    |
19:                   32 -> 63                   : 0        |                    |
19:                   64 -> 127                  : 0        |                    |
19:                  128 -> 255                  : 0        |                    |
19:                  256 -> 511                  : 0        |                    |
19:                  512 -> 1023                 : 0        |                    |
19:                 1024 -> 2047                 : 0        |                    |
19:                 2048 -> 4095                 : 0        |                    |
19:                 4096 -> 8191                 : 0        |                    |
19:                 8192 -> 16383                : 0        |                    |
19:                16384 -> 32767                : 0        |                    |
19:                32768 -> 65535                : 0        |                    |
19:                65536 -> 131071               : 0        |                    |
19:               131072 -> 262143               : 0        |                    |
19:               262144 -> 524287               : 0        |                    |
19:               524288 -> 1048575              : 0        |                    |
19:              1048576 -> 2097151              : 0        |                    |
19:              2097152 -> 4194303              : 0        |                    |
19:              4194304 -> 8388607              : 0        |                    |
19:              8388608 -> 16777215             : 0        |                    |
19:             16777216 -> 33554431             : 0        |                    |
19:             33554432 -> 67108863             : 0        |                    |
19:             67108864 -> 134217727            : 0        |                    |
19:            134217728 -> 268435455            : 0        |                    |
19:            268435456 -> 536870911            : 0        |                    |
19:            536870912 -> 1073741823           : 0        |                    |
19:           1073741824 -> 2147483647           : 0        |                    |
19:           2147483648 -> 4294967295           : 0        |                    |
19:           4294967296 -> 8589934591           : 1        |********************|
19: 
19: Bucket ptr = 'python'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 100      |****************************************|
19: 
19: Bucket ptr = 'rcu_sched'
19:      value               : count     distribution
19:          0 -> 1          : 3        |******************************          |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 4        |****************************************|
19: 
19: Bucket ptr = 'kworker/u4:1'
19:      value               : count     distribution
19:          0 -> 1          : 1        |****************************************|
19: 
19: Bucket ptr = 'kworker/0:3'
19:      value               : count     distribution
19:          0 -> 1          : 1        |****************************************|
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 0        |                                        |
19:   67108864 -> 134217727  : 0        |                                        |
19:  134217728 -> 268435455  : 0        |                                        |
19:  268435456 -> 536870911  : 0        |                                        |
19:  536870912 -> 1073741823 : 1        |****************************************|
19: 
19: Bucket ptr = 'kworker/0:1H'
19:      value               : count     distribution
19:          0 -> 1          : 1        |****************************************|
19: 
19: Bucket ptr = 'kworker/1:4'
19:                value                         : count     distribution
19:                    0 -> 1                    : 0        |                    |
19:                    2 -> 3                    : 0        |                    |
19:                    4 -> 7                    : 0        |                    |
19:                    8 -> 15                   : 0        |                    |
19:                   16 -> 31                   : 0        |                    |
19:                   32 -> 63                   : 0        |                    |
19:                   64 -> 127                  : 0        |                    |
19:                  128 -> 255                  : 0        |                    |
19:                  256 -> 511                  : 0        |                    |
19:                  512 -> 1023                 : 0        |                    |
19:                 1024 -> 2047                 : 0        |                    |
19:                 2048 -> 4095                 : 0        |                    |
19:                 4096 -> 8191                 : 0        |                    |
19:                 8192 -> 16383                : 0        |                    |
19:                16384 -> 32767                : 0        |                    |
19:                32768 -> 65535                : 0        |                    |
19:                65536 -> 131071               : 0        |                    |
19:               131072 -> 262143               : 0        |                    |
19:               262144 -> 524287               : 0        |                    |
19:               524288 -> 1048575              : 0        |                    |
19:              1048576 -> 2097151              : 0        |                    |
19:              2097152 -> 4194303              : 0        |                    |
19:              4194304 -> 8388607              : 0        |                    |
19:              8388608 -> 16777215             : 0        |                    |
19:             16777216 -> 33554431             : 0        |                    |
19:             33554432 -> 67108863             : 2        |********************|
19:             67108864 -> 134217727            : 0        |                    |
19:            134217728 -> 268435455            : 0        |                    |
19:            268435456 -> 536870911            : 0        |                    |
19:            536870912 -> 1073741823           : 0        |                    |
19:           1073741824 -> 2147483647           : 0        |                    |
19:           2147483648 -> 4294967295           : 0        |                    |
19:           4294967296 -> 8589934591           : 0        |                    |
19:           8589934592 -> 17179869183          : 1        |**********          |
19: 
19: Bucket ptr = 'ext4lazyinit'
19:      value               : count     distribution
19:          0 -> 1          : 0        |                                        |
19:          2 -> 3          : 0        |                                        |
19:          4 -> 7          : 0        |                                        |
19:          8 -> 15         : 0        |                                        |
19:         16 -> 31         : 0        |                                        |
19:         32 -> 63         : 0        |                                        |
19:         64 -> 127        : 0        |                                        |
19:        128 -> 255        : 0        |                                        |
19:        256 -> 511        : 0        |                                        |
19:        512 -> 1023       : 0        |                                        |
19:       1024 -> 2047       : 0        |                                        |
19:       2048 -> 4095       : 0        |                                        |
19:       4096 -> 8191       : 0        |                                        |
19:       8192 -> 16383      : 0        |                                        |
19:      16384 -> 32767      : 0        |                                        |
19:      32768 -> 65535      : 0        |                                        |
19:      65536 -> 131071     : 0        |                                        |
19:     131072 -> 262143     : 0        |                                        |
19:     262144 -> 524287     : 0        |                                        |
19:     524288 -> 1048575    : 0        |                                        |
19:    1048576 -> 2097151    : 0        |                                        |
19:    2097152 -> 4194303    : 0        |                                        |
19:    4194304 -> 8388607    : 0        |                                        |
19:    8388608 -> 16777215   : 0        |                                        |
19:   16777216 -> 33554431   : 0        |                                        |
19:   33554432 -> 67108863   : 1        |****************************************|
19:   67108864 -> 134217727  : 0        |                                        |
19:  134217728 -> 268435455  : 0        |                                        |
19:  268435456 -> 536870911  : 0        |                                        |
19:  536870912 -> 1073741823 : 0        |                                        |
19: 1073741824 -> 2147483647 : 1        |****************************************|
19: 
19: Bucket ptr = 'swapper/0'
19:                value                         : count     distribution
19:                    0 -> 1                    : 0        |                    |
19:                    2 -> 3                    : 0        |                    |
19:                    4 -> 7                    : 0        |                    |
19:                    8 -> 15                   : 0        |                    |
19:                   16 -> 31                   : 0        |                    |
19:                   32 -> 63                   : 0        |                    |
19:                   64 -> 127                  : 0        |                    |
19:                  128 -> 255                  : 0        |                    |
19:                  256 -> 511                  : 0        |                    |
19:                  512 -> 1023                 : 0        |                    |
19:                 1024 -> 2047                 : 0        |                    |
19:                 2048 -> 4095                 : 0        |                    |
19:                 4096 -> 8191                 : 0        |                    |
19:                 8192 -> 16383                : 0        |                    |
19:                16384 -> 32767                : 0        |                    |
19:                32768 -> 65535                : 0        |                    |
19:                65536 -> 131071               : 0        |                    |
19:               131072 -> 262143               : 0        |                    |
19:               262144 -> 524287               : 0        |                    |
19:               524288 -> 1048575              : 0        |                    |
19:              1048576 -> 2097151              : 0        |                    |
19:              2097152 -> 4194303              : 0        |                    |
19:              4194304 -> 8388607              : 0        |                    |
19:              8388608 -> 16777215             : 0        |                    |
19:             16777216 -> 33554431             : 0        |                    |
19:             33554432 -> 67108863             : 3        |**                  |
19:             67108864 -> 134217727            : 0        |                    |
19:            134217728 -> 268435455            : 0        |                    |
19:            268435456 -> 536870911            : 0        |                    |
19:            536870912 -> 1073741823           : 0        |                    |
19:           1073741824 -> 2147483647           : 0        |                    |
19:           2147483648 -> 4294967295           : 0        |                    |
19:           4294967296 -> 8589934591           : 1        |                    |
19:           8589934592 -> 17179869183          : 0        |                    |
19:          17179869184 -> 34359738367          : 0        |                    |
19:          34359738368 -> 68719476735          : 28       |********************|
19:          68719476736 -> 137438953471         : 0        |                    |
19:         137438953472 -> 274877906943         : 0        |                    |
19:         274877906944 -> 549755813887         : 2        |*       ....
19: ----------------------------------------------------------------------
19: Ran 4 tests in 3.295s
19: 
19: OK
19:             |
19: 
19: Bucket ptr = 'swapper/1'
19:                value                         : count     distribution
19:                    0 -> 1                    : 0        |                    |
19:                    2 -> 3                    : 0        |                    |
19:                    4 -> 7                    : 0        |                    |
19:                    8 -> 15                   : 0        |                    |
19:                   16 -> 31                   : 0        |                    |
19:                   32 -> 63                   : 0        |                    |
19:                   64 -> 127                  : 0        |                    |
19:                  128 -> 255                  : 0        |                    |
19:                  256 -> 511                  : 0        |                    |
19:                  512 -> 1023                 : 0        |                    |
19:                 1024 -> 2047                 : 0        |                    |
19:                 2048 -> 4095                 : 0        |                    |
19:                 4096 -> 8191                 : 0        |                    |
19:                 8192 -> 16383                : 0        |                    |
19:                16384 -> 32767                : 0        |                    |
19:                32768 -> 65535                : 0        |                    |
19:                65536 -> 131071               : 0        |                    |
19:               131072 -> 262143               : 0        |                    |
19:               262144 -> 524287               : 0        |                    |
19:               524288 -> 1048575              : 0        |                    |
19:              1048576 -> 2097151              : 0        |                    |
19:              2097152 -> 4194303              : 0        |                    |
19:              4194304 -> 8388607              : 0        |                    |
19:              8388608 -> 16777215             : 0        |                    |
19:             16777216 -> 33554431             : 0        |                    |
19:             33554432 -> 67108863             : 4        |                    |
19:             67108864 -> 134217727            : 0        |                    |
19:            134217728 -> 268435455            : 0        |                    |
19:            268435456 -> 536870911            : 0        |                    |
19:            536870912 -> 1073741823           : 0        |                    |
19:           1073741824 -> 2147483647           : 0        |                    |
19:           2147483648 -> 4294967295           : 0        |                    |
19:           4294967296 -> 8589934591           : 1        |                    |
19:           8589934592 -> 17179869183          : 1        |                    |
19:          17179869184 -> 34359738367          : 0        |                    |
19:          34359738368 -> 68719476735          : 0        |                    |
19:          68719476736 -> 137438953471         : 0        |                    |
19:         137438953472 -> 274877906943         : 0        |                    |
19:         274877906944 -> 549755813887         : 103      |********************|
19: Error in atexit._run_exitfuncs:
19: Traceback (most recent call last):
19:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
19:     func(*targs, **kargs)
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
19:     os.close(fn.fd)
19: OSError: [Errno 9] Bad file descriptor
19: Error in atexit._run_exitfuncs:
19: Traceback (most recent call last):
19:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
19:     func(*targs, **kargs)
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
19:     os.close(fn.fd)
19: OSError: [Errno 9] Bad file descriptor
19: Error in atexit._run_exitfuncs:
19: Traceback (most recent call last):
19:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
19:     func(*targs, **kargs)
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
19:     os.close(fn.fd)
19: OSError: [Errno 9] Bad file descriptor
19: Error in atexit._run_exitfuncs:
19: Traceback (most recent call last):
19:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
19:     func(*targs, **kargs)
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
19:     os.close(fn.fd)
19: OSError: [Errno 9] Bad file descriptor
19: Error in sys.exitfunc:
19: Traceback (most recent call last):
19:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
19:     func(*targs, **kargs)
19:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
19:     os.close(fn.fd)
19: OSError: [Errno 9] Bad file descriptor
19/40 Test #19: py_test_histogram ................   Passed    3.39 sec
test 20
      Start 20: py_array

20: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_array" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_array.py"
20: Test timeout computed to be: 10000000
20: EEEE
20: ======================================================================
20: ERROR: test_native_type (__main__.TestArray)
20: ----------------------------------------------------------------------
20: Traceback (most recent call last):
20:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_array.py", line 27, in test_native_type
20:     b = BPF(text="""BPF_ARRAY(table1, u64, 128);""")
20:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
20:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
20: Exception: Failed to compile BPF module <text>
20: 
20: ======================================================================
20: ERROR: test_perf_buffer (__main__.TestArray)
20: ----------------------------------------------------------------------
20: Traceback (most recent call last):
20:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_array.py", line 65, in test_perf_buffer
20:     b = BPF(text=text)
20:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
20:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
20: Exception: Failed to compile BPF module <text>
20: 
20: ======================================================================
20: ERROR: test_perf_buffer_for_each_cpu (__main__.TestArray)
20: ----------------------------------------------------------------------
20: Traceback (most recent call last):
20:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_array.py", line 98, in test_perf_buffer_for_each_cpu
20:     b = BPF(text=text)
20:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
20:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
20: Exception: Failed to compile BPF module <text>
20: 
20: ======================================================================
20: ERROR: test_simple (__main__.TestArray)
20: ----------------------------------------------------------------------
20: Traceback (most recent call last):
20:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_array.py", line 15, in test_simple
20:     b = BPF(text="""BPF_ARRAY(table1, u64, 128);""")
20:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
20:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
20: Exception: Failed to compile BPF module <text>
20: 
20: ----------------------------------------------------------------------
20: Ran 4 tests in 0.475s
20: 
20: FAILED (errors=4)
20: Failed
20/40 Test #20: py_array .........................***Failed    0.57 sec
test 21
      Start 21: py_uprobes

21: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_uprobes" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_uprobes.py"
21: Test timeout computed to be: 10000000
21: .Python 2.7.14
21: .Arena 0:
21: system bytes     =   18989056
21: in use bytes     =    2735808
21: Total (incl. mmap):
21: system bytes     =   19779584
21: in use bytes     =    3526336
21: max mmap regions =          7
21: max mmap bytes   =    2781184
21: .
21: ----------------------------------------------------------------------
21: Ran 3 tests in 6.404s
21: 
21: OK
21/40 Test #21: py_uprobes .......................   Passed    6.49 sec
test 22
      Start 22: py_test_stackid

22: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_stackid" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_stackid.py"
22: Test timeout computed to be: 10000000
22: sE
22: ======================================================================
22: ERROR: test_simple (__main__.TestStackid)
22: ----------------------------------------------------------------------
22: Traceback (most recent call last):
22:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_stackid.py", line 40, in test_simple
22:     """)
22:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
22:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
22: Exception: Failed to compile BPF module <text>
22: 
22: ----------------------------------------------------------------------
22: Ran 2 tests in 0.174s
22: 
22: FAILED (errors=1, skipped=1)
22: Failed
22/40 Test #22: py_test_stackid ..................***Failed    0.26 sec
test 23
      Start 23: py_test_tracepoint

23: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_test_tracepoint" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tracepoint.py"
23: Test timeout computed to be: 10000000
23: EE
23: ======================================================================
23: ERROR: test_tracepoint (__main__.TestTracepoint)
23: ----------------------------------------------------------------------
23: Traceback (most recent call last):
23:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tracepoint.py", line 36, in test_tracepoint
23:     b = bcc.BPF(text=text)
23:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
23:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
23: Exception: Failed to compile BPF module <text>
23: 
23: ======================================================================
23: ERROR: test_tracepoint_data_loc (__main__.TestTracepointDataLoc)
23: ----------------------------------------------------------------------
23: Traceback (most recent call last):
23:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tracepoint.py", line 61, in test_tracepoint_data_loc
23:     b = bcc.BPF(text=text)
23:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
23:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
23: Exception: Failed to compile BPF module <text>
23: 
23: ----------------------------------------------------------------------
23: Ran 2 tests in 0.245s
23: 
23: FAILED (errors=2)
23: Failed
23/40 Test #23: py_test_tracepoint ...............***Failed    0.34 sec
test 24
      Start 24: py_test_perf_event

24: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_test_perf_event" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_perf_event.py"
24: Test timeout computed to be: 10000000
24: perf_event_open: No such file or directory
24: s
24: ----------------------------------------------------------------------
24: Ran 1 test in 0.218s
24: 
24: OK (skipped=1)
24/40 Test #24: py_test_perf_event ...............   Passed    0.36 sec
test 25
      Start 25: py_test_utils

25: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_test_utils" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_utils.py"
25: Test timeout computed to be: 10000000
25: ..
25: ----------------------------------------------------------------------
25: Ran 2 tests in 0.001s
25: 
25: OK
25/40 Test #25: py_test_utils ....................   Passed    0.08 sec
test 26
      Start 26: py_test_percpu

26: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_test_percpu" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_percpu.py"
26: Test timeout computed to be: 10000000
26: ....
26: ----------------------------------------------------------------------
26: Ran 4 tests in 1.159s
26: 
26: OK
26/40 Test #26: py_test_percpu ...................   Passed    1.25 sec
test 27
      Start 27: py_test_dump_func

27: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_dump_func" "simple" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_dump_func.py"
27: Test timeout computed to be: 10000000
27: E
27: ======================================================================
27: ERROR: test_return (__main__.TestDumpFunc)
27: ----------------------------------------------------------------------
27: Traceback (most recent call last):
27:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_dump_func.py", line 16, in test_return
27:     }""")
27:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
27:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
27: Exception: Failed to compile BPF module <text>
27: 
27: ----------------------------------------------------------------------
27: Ran 1 test in 0.119s
27: 
27: FAILED (errors=1)
27: Failed
27/40 Test #27: py_test_dump_func ................***Failed    0.19 sec
test 28
      Start 28: py_test_disassembler

28: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_test_disassembler" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_disassembler.py"
28: Test timeout computed to be: 10000000
28: .E
28: ======================================================================
28: ERROR: test_func (__main__.TestDisassembler)
28: ----------------------------------------------------------------------
28: Traceback (most recent call last):
28:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_disassembler.py", line 146, in test_func
28:     }""")
28:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
28:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
28: Exception: Failed to compile BPF module <text>
28: 
28: ----------------------------------------------------------------------
28: Ran 2 tests in 0.122s
28: 
28: FAILED (errors=1)
28: Failed
28/40 Test #28: py_test_disassembler .............***Failed    0.21 sec
test 29
      Start 29: py_test_tools_smoke

29: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_test_tools_smoke" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py"
29: Test timeout computed to be: 10000000
29: Traceback (most recent call last):
29:   File "../../tools/argdist.py", line 712, in run
29:     self._main_loop()
29:   File "../../tools/argdist.py", line 702, in _main_loop
29:     exit()
29:   File "/usr/lib64/python2.7/site.py", line 355, in __call__
29:     raise SystemExit(code)
29: SystemExit: None
29: .Traceback (most recent call last):
29:   File "../../tools/bashreadline.py", line 67, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/biolatency.py", line 134, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/biosnoop.py", line 157, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/biotop.py", line 176, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/biotop.py", line 176, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F...Traceback (most recent call last):
29:   File "../../tools/cachestat.py", line 96, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.......Traceback (most recent call last):
29:   File "../../tools/dcstat.py", line 93, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.Traceback (most recent call last):
29:   File "../../tools/drsnoop.py", line 183, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.Traceback (most recent call last):
29:   File "../../tools/ext4dist.py", line 194, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/ext4slower.py", line 311, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F..clear: terminal attributes: No such device or address
29: 
29: ..Traceback (most recent call last):
29:   File "../../tools/funclatency.py", line 206, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/funcslower.py", line 232, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/gethostlatency.py", line 102, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F./bin/sh: line 1:  6092 Killed                  timeout -s KILL -k 5s 5s ../../tools/killsnoop.py > /dev/null
29: ..sTraceback (most recent call last):
29:   File "../../tools/mdflush.py", line 54, in <module>
29:     """)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.....Traceback (most recent call last):
29:   File "../../tools/offcputime.py", line 235, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FWARNING: 47 stack traces lost and could not be displayed.
29: ....Traceback (most recent call last):
29:   File "../../tools/profile.py", line 265, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.Traceback (most recent call last):
29:   File "../../tools/runqlen.py", line 186, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/shmsnoop.py", line 178, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/slabratetop.py", line 109, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F...Traceback (most recent call last):
29:   File "../../tools/sslsniff.py", line 132, in <module>
29:     b = BPF(text=prog)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F..Traceback (most recent call last):
29:   File "../../tools/syncsnoop.py", line 32, in <module>
29:     """)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F..Traceback (most recent call last):
29:   File "../../tools/tcpconnect.py", line 289, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/tcpconnlat.py", line 195, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/tcpdrop.py", line 179, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/tcplife.py", line 456, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/tcpretrans.py", line 340, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/tcptop.py", line 206, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F.FTraceback (most recent call last):
29:   File "../../tools/ttysnoop.py", line 101, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F...Traceback (most recent call last):
29:   File "../../tools/lib/uobjnew.py", line 176, in <module>
29:     bpf = BPF(text=program, usdt_contexts=[usdt])
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: Fclear: terminal attributes: No such device or address
29: 
29: Error in atexit._run_exitfuncs:
29: Traceback (most recent call last):
29:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
29:     func(*targs, **kargs)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
29:     os.close(fn.fd)
29: OSError: [Errno 9] Bad file descriptor
29: Error in sys.exitfunc:
29: Traceback (most recent call last):
29:   File "/usr/lib64/python2.7/atexit.py", line 24, in _run_exitfuncs
29:     func(*targs, **kargs)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 1366, in cleanup
29:     os.close(fn.fd)
29: OSError: [Errno 9] Bad file descriptor
29: ...Traceback (most recent call last):
29:   File "../../tools/vfsstat.py", line 64, in <module>
29:     """)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: FTraceback (most recent call last):
29:   File "../../tools/wakeuptime.py", line 165, in <module>
29:     b = BPF(text=bpf_text)
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
29:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
29: Exception: Failed to compile BPF module <text>
29: F....
29: ======================================================================
29: FAIL: test_bashreadline (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 73, in test_bashreadline
29:     self.run_with_int("bashreadline.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_biolatency (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 76, in test_biolatency
29:     self.run_with_duration("biolatency.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_biosnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 80, in test_biosnoop
29:     self.run_with_int("biosnoop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_biotop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 83, in test_biotop
29:     self.run_with_duration("biotop.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_bitesize (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 86, in test_bitesize
29:     self.run_with_int("biotop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_cachestat (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 101, in test_cachestat
29:     self.run_with_duration("cachestat.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_dcstat (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 137, in test_dcstat
29:     self.run_with_duration("dcstat.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_drsnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 149, in test_drsnoop
29:     self.run_with_int("drsnoop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_ext4dist (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 156, in test_ext4dist
29:     self.run_with_duration("ext4dist.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_ext4slower (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 160, in test_ext4slower
29:     self.run_with_int("ext4slower.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_funclatency (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 178, in test_funclatency
29:     self.run_with_int("funclatency.py __kmalloc -i 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_funcslower (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 182, in test_funcslower
29:     self.run_with_int("funcslower.py __kmalloc")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_gethostlatency (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 186, in test_gethostlatency
29:     self.run_with_int("gethostlatency.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_mdflush (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 213, in test_mdflush
29:     self.run_with_int("mdflush.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_offcputime (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 245, in test_offcputime
29:     self.run_with_duration("offcputime.py 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_profile (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 264, in test_profile
29:     self.run_with_duration("profile.py 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_runqlen (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 271, in test_runqlen
29:     self.run_with_duration("runqlen.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_shmsnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 275, in test_shmsnoop
29:     self.run_with_int("shmsnoop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_slabratetop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 282, in test_slabratetop
29:     self.run_with_duration("slabratetop.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_sslsniff (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 295, in test_sslsniff
29:     self.run_with_int("sslsniff.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_syncsnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 307, in test_syncsnoop
29:     self.run_with_int("syncsnoop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_tcpconnect (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 319, in test_tcpconnect
29:     self.run_with_int("tcpconnect.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_tcpconnlat (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 323, in test_tcpconnlat
29:     self.run_with_int("tcpconnlat.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_tcpdrop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 335, in test_tcpdrop
29:     self.run_with_int("tcpdrop.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_tcplife (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 327, in test_tcplife
29:     self.run_with_int("tcplife.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_tcpretrans (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 331, in test_tcpretrans
29:     self.run_with_int("tcpretrans.py")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_tcptop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 338, in test_tcptop
29:     self.run_with_duration("tcptop.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_trace (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 345, in test_trace
29:     self.run_with_int("trace.py do_sys_open")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_ttysnoop (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 349, in test_ttysnoop
29:     self.run_with_int("ttysnoop.py /dev/console")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_uobjnew (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 370, in test_uobjnew
29:     self.run_with_int("cobjnew.sh %d" % os.getpid())
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 52, in run_with_int
29:     or (rc == 137 and kill), "rc was %d" % rc)
29: AssertionError: rc was 1
29: 
29: ======================================================================
29: FAIL: test_vfsstat (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 384, in test_vfsstat
29:     self.run_with_duration("vfsstat.py 1 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ======================================================================
29: FAIL: test_wakeuptime (__main__.SmokeTests)
29: ----------------------------------------------------------------------
29: Traceback (most recent call last):
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 388, in test_wakeuptime
29:     self.run_with_duration("wakeuptime.py 1")
29:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_smoke.py", line 32, in run_with_duration
29:     (timeout, full_command), shell=True))
29: AssertionError: 0 != 1
29: 
29: ----------------------------------------------------------------------
29: Ran 81 tests in 170.473s
29: 
29: FAILED (failures=32, skipped=1)
29: Failed
29/40 Test #29: py_test_tools_smoke ..............***Failed  170.52 sec
test 30
      Start 30: py_test_tools_memleak

30: Test command: /home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/tests/wrapper.sh "py_test_tools_memleak" "sudo" "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/tests/python/test_tools_memleak.py"
30: Test timeout computed to be: 10000000
30: cannot attach uprobe, Device or resource busy
30: .Traceback (most recent call last):
30:   File "../../tools/memleak.py", line 411, in <module>
30:     bpf = BPF(text=bpf_source)
30:   File "/home/fedora/jenkins/workspace/bcc-pr/label/fc26/build/src/python/bcc-python/bcc/__init__.py", line 347, in __init__
30:     raise Exception("Failed to compile BPF module %s" % (src_file or "<text>"))
30: Exception: Failed to compile BPF module <text>
Build was aborted
Aborted by yonghong-song
Finished: ABORTED