xref: /llvm-project/clang/test/LibClang/symbols.test (revision 77ef5a601ad3827316e412788f609e9141b51e83)
1# Check that there are no unversioned clang symbols in libclang.so
2RUN: llvm-nm -Dj --defined-only %libclang | grep -v -e '@@LLVM_[0-9]\+$' | not grep '^clang'
3
4# Check that there are no local clang_ symbols (ignoring symbols with .cold or
5# .localalias suffxies.)
6RUN: llvm-nm %libclang | not grep '[a-z] clang_[^.$]\+$'
7