[libcxx-commits] [PATCH] D77657: [WIP][libc++] Add an executor that bundles tests for deferred execution
    Louis Dionne via Phabricator via libcxx-commits 
    libcxx-commits at lists.llvm.org
       
    Tue Apr  7 09:12:33 PDT 2020
    
    
  
ldionne added a comment.
Also, just to explain how I'm currently running the tests with this patch applied:
  rsync -am --include='*.bundle' --include='*/' --exclude='*' $PWD/build $PWD/all-tests
  
  for bundle in $(find all-tests -name '*.bundle'); do
      if ! sh ${bundle}; then
          echo ${bundle} failed
      fi
  done
I'm currently running them locally, but if the tests were compiled for some device, I could just as easily copy the bundles over and execute them with a single `ssh` command.
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D77657/new/
https://reviews.llvm.org/D77657
    
    
More information about the libcxx-commits
mailing list