jpeach commented on issue #10061:
URL:
https://github.com/apache/trafficserver/issues/10061#issuecomment-1649138066
Building with this:
```
$ cat c.sh
#! /usr/bin/env bash
set -o errexit
make distclean || true
autoreconf -fi
./configure \
--enable-debug \
--prefix=/opt/ats \
--with-openssl=$(brew --prefix openssl) \
--enable-experimental-plugins \
--enable-example-plugins \
--enable-test-tools
make clean
make -j$(getconf NPROCESSORS_ONLN) CC="mj clang" CXX="mj clang++"
make -j$(getconf NPROCESSORS_ONLN) check CC="mj clang" CXX="mj clang++"
mj --collate
find . -name *.db.json | xargs rm
```
Fails in the tests:
```
Making check in remap
/Applications/Xcode.app/Contents/Developer/usr/bin/make
test_NextHopStrategyFactory test_NextHopRoundRobin test_NextHopConsistentHash
CXX test_NextHopStrategyFactory-NextHopSelectionStrategy.o
CXX test_NextHopStrategyFactory-NextHopStrategyFactory.o
CXX test_NextHopStrategyFactory-NextHopRoundRobin.o
CXX test_NextHopStrategyFactory-NextHopConsistentHash.o
CXX test_NextHopStrategyFactory-NextHopHealthStatus.o
CXX test_NextHopRoundRobin-NextHopSelectionStrategy.o
CXX test_NextHopRoundRobin-NextHopStrategyFactory.o
CXX test_NextHopRoundRobin-NextHopRoundRobin.o
CXX test_NextHopRoundRobin-NextHopConsistentHash.o
CXX test_NextHopRoundRobin-NextHopHealthStatus.o
CXX test_NextHopConsistentHash-NextHopSelectionStrategy.o
CXX test_NextHopConsistentHash-NextHopStrategyFactory.o
CXX test_NextHopConsistentHash-NextHopConsistentHash.o
CXX test_NextHopConsistentHash-NextHopHealthStatus.o
CXX test_NextHopConsistentHash-NextHopRoundRobin.o
CXX unit-tests/test_NextHopConsistentHash-test_NextHopConsistentHash.o
CXX unit-tests/test_NextHopConsistentHash-nexthop_test_stubs.o
CXX
unit-tests/test_NextHopStrategyFactory-test_NextHopStrategyFactory.o
CXX unit-tests/test_NextHopStrategyFactory-nexthop_test_stubs.o
CXX unit-tests/test_NextHopRoundRobin-test_NextHopRoundRobin.o
CXX unit-tests/test_NextHopRoundRobin-nexthop_test_stubs.o
CXXLD test_NextHopConsistentHash
clang: error: no such file or directory:
'/Users/jpeach/src/trafficserver/src/tscore/.libs/libtscore.dylib'
make[4]: *** [test_NextHopConsistentHash] Error 1
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]