Giter VIP home page Giter VIP logo

8heap's People

Contributors

philass avatar sorenlassen avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

philass bd21

8heap's Issues

.travis failing on compile with boost and google test

Travis build fails with

0.90s$ make HeapAuxTest
Scanning dependencies of target HeapAuxTest
[ 50%] Building CXX object CMakeFiles/HeapAuxTest.dir/HeapAuxTest.cpp.o
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:18:25: error: ‘boost::iterators::counting_iterator’ has not been declared
 using boost::iterators::counting_iterator;
                         ^~~~~~~~~~~~~~~~~
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:19:25: error: ‘boost::iterators::transform_iterator’ has not been declared
 using boost::iterators::transform_iterator;
                         ^~~~~~~~~~~~~~~~~~
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:32:17: error: expected constructor, destructor, or type conversion before ‘(’ token
 TYPED_TEST_SUITE(HeapAuxTest, Implementations);
                 ^
In file included from /usr/include/gtest/gtest.h:66:0,
                 from /home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:14:
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:34:1: error: ‘gtest_type_params_HeapAuxTest_’ was not declared in this scope
 TYPED_TEST(HeapAuxTest, Clear) {
 ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:34:1: error: template argument 3 is invalid
 TYPED_TEST(HeapAuxTest, Clear) {
 ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:42:1: error: ‘gtest_type_params_HeapAuxTest_m’ was not declared in this scope
 TYPED_TEST(HeapAuxTest, Push3) {
 ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:42:1: error: template argument 3 is invalid
 TYPED_TEST(HeapAuxTest, Push3) {
 ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:64:1: error: ‘gtest_type_params_HeapAuxTest_’ was not declared in this scope
 TYPED_TEST(HeapAuxTest, Heapify3) {
 ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:64:1: error: template argument 3 is invalid
 TYPED_TEST(HeapAuxTest, Heapify3) {
 ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:77:1: error: ‘gtest_type_params_HeapAuxTest_’ was not declared in this scope
 TYPED_TEST(HeapAuxTest, Sort3) {
 ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:77:1: error: template argument 3 is invalid
 TYPED_TEST(HeapAuxTest, Sort3) {
 ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:91:1: error: ‘gtest_type_params_HeapAuxTest_’ was not declared in this scope
 TYPED_TEST(HeapAuxTest, Heapify100) {
 ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:91:1: error: template argument 3 is invalid
 TYPED_TEST(HeapAuxTest, Heapify100) {
 ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp: In member function ‘virtual void {anonymous}::HeapAuxTest_Heapify100_Test<gtest_TypeParam_>::TestBody()’:
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:95:3: error: ‘counting_iterator’ was not declared in this scope
   counting_iterator<value_type> zero(0);
   ^~~~~~~~~~~~~~~~~
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:95:3: note: suggested alternative:
In file included from /home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:12:0:
/usr/include/boost/iterator/counting_iterator.hpp:22:7: note:   ‘boost::counting_iterator’
 class counting_iterator;
       ^~~~~~~~~~~~~~~~~
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:95:31: error: expected primary-expression before ‘>’ token
   counting_iterator<value_type> zero(0);
                               ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:95:39: error: there are no arguments to ‘zero’ that depend on a template parameter, so a declaration of ‘zero’ must be available [-fpermissive]
   counting_iterator<value_type> zero(0);
                                       ^
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:95:39: note: (if you use ‘-fpermissive’, G++ will accept your code, but allowing the use of an undeclared name is deprecated)
/home/travis/build/sorenlassen/8heap/HeapAuxTest.cpp:100:35: error: ‘zero’ was not declared in this scope
   auto begin = transform_iterator(zero, revert);
                                   ^~~~
make[3]: *** [CMakeFiles/HeapAuxTest.dir/HeapAuxTest.cpp.o] Error 1
make[2]: *** [CMakeFiles/HeapAuxTest.dir/all] Error 2
make[1]: *** [CMakeFiles/HeapAuxTest.dir/rule] Error 2
make: *** [HeapAuxTest] Error 2
The command "make HeapAuxTest" exited with 2.
0.00s$ ./HeapAuxTest
/home/travis/.travis/functions: line 109: ./HeapAuxTest: No such file or directory
The command "./HeapAuxTest" exited with 127.

My guess is this is due to wrong Boost and Google Test versions being installed in the .travis build

Failed to compile HeapAuxTest.cpp with Heap8Embed.hpp

make runtests
gcc -g -std=c11 -msse4 -O2 -c h8.c
g++ -g -std=c++17 -msse4 -lgtest -lgtest_main h8.o HeapTest.cpp -o HeapTest.out
g++ -g -std=c++17 -msse4 -lgtest -lgtest_main h8.o h8Test.cpp -o h8Test.out
g++ -g -std=c++17 -msse4 -O2 -c Sort8.cpp
g++ -g -std=c++17 -msse4 -lgtest -lgtest_main Sort8.o Sort8Test.cpp -o Sort8Test.out
g++ -g -std=c++17 -msse4 -lgtest -lgtest_main minposTest.cpp -o minposTest.out
g++ -g -std=c++17 -msse4 -lgtest -lgtest_main HeapAuxTest.cpp -o HeapAuxTest.out
In file included from HeapAuxTest.cpp:10:
./Heap8Embed.hpp:65:27: error: non-const reference cannot bind to vector element
    return std::make_pair(n->values.values[i], n->shadows[i]);
                          ^~~~~~~~~~~~~~~~~~~
HeapAuxTest.cpp:98:29: note: in instantiation of member function 'Heap8Embed<(anonymous namespace)::ShadowArray>::entry' requested here
  EXPECT_EQ(p3, this->heap_.entry(0));
                            ^
/usr/local/include/gtest/internal/gtest-internal.h:470:44: note: in instantiation of member function '(anonymous
      namespace)::HeapAuxTest_Sort3_Test<Heap8Embed<(anonymous namespace)::ShadowArray> >::TestBody' requested here
  Test* CreateTest() override { return new TestClass; }
                                           ^
/usr/local/include/gtest/internal/gtest-internal.h:728:13: note: in instantiation of member function 'testing::internal::TestFactoryImpl<(anonymous
      namespace)::HeapAuxTest_Sort3_Test<Heap8Embed<(anonymous namespace)::ShadowArray> > >::CreateTest' requested here
        new TestFactoryImpl<TestClass>);
            ^
/usr/local/include/gtest/internal/gtest-internal.h:732:57: note: in instantiation of member function 'testing::internal::TypeParameterizedTest<HeapAuxTest,
      testing::internal::TemplateSel<HeapAuxTest_Sort3_Test>, testing::internal::Types<Heap8Embed<(anonymous namespace)::ShadowArray>> >::Register' requested here
                                 typename Types::Tail>::Register(prefix,
                                                        ^
HeapAuxTest.cpp:90:1: note: in instantiation of member function 'testing::internal::TypeParameterizedTest<HeapAuxTest,
      testing::internal::TemplateSel<HeapAuxTest_Sort3_Test>, testing::internal::Types<Heap8Aux<int>, Heap8Embed<(anonymous namespace)::ShadowArray> > >::Register'
      requested here
TYPED_TEST(HeapAuxTest, Sort3) {
^
/usr/local/include/gtest/gtest-typed-test.h:214:27: note: expanded from macro 'TYPED_TEST'
              CaseName)>::Register("",                                        \
                          ^
/Library/Developer/CommandLineTools/usr/include/c++/v1/utility:661:17: note: passing argument to parameter '__t1' here
make_pair(_T1&& __t1, _T2&& __t2)
                ^
1 error generated.
make: *** [HeapAuxTest.out] Error 1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.