Skip to content

Commit c518bba

Browse files
committed
test
1 parent 7e2efe5 commit c518bba

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ci/run.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,15 @@ for rlib in $(echo $rlib_paths); do
121121
defined="$tmpdir/defined_symbols.txt"
122122
undefined="$tmpdir/defined_symbols.txt"
123123

124+
echo RUN NM
124125
$NM --quiet -U "$rlib"
126+
echo RUN GREP
125127
$NM --quiet -U "$rlib" | grep 'T _ZN4core'
128+
echo RUN AWK
126129
$NM --quiet -U "$rlib" | grep 'T _ZN4core' | awk '{print $3}'
130+
echo RUN SORT
127131
$NM --quiet -U "$rlib" | grep 'T _ZN4core' | awk '{print $3}' | sort
132+
echo RUN UNIQ
128133
$NM --quiet -U "$rlib" | grep 'T _ZN4core' | awk '{print $3}' | sort | uniq > "$defined"
129134

130135

0 commit comments

Comments
 (0)