Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. SET PREFIX=..soci-3.2.3-install
  2. SET POSTGRES_DIR=E:PostgreSQL9.5
  3.  
  4. cmake^
  5. -G "NMake Makefiles"^
  6. -DCMAKE_BUILD_TYPE=Release^
  7. -DCMAKE_INSTALL_PREFIX=%PREFIX%^
  8. -DSOCI_TESTS=ON^
  9. -DWITH_ODBC=OFF^
  10. -DWITH_POSTGRESQL=ON^
  11. -DPOSTGRESQL_INCLUDE_DIR="%POSTGRES_DIR%include"^
  12. -DPOSTGRESQL_LIBRARIES="%POSTGRES_DIR%liblibpq.lib"^
  13. -DSOCI_POSTGRESQL_TEST_CONNSTR="host=localhost port=5432 dbname=postgres user=eagui"^
  14. ..soci-3.2.3
  15.  
  16. nmake
  17. nmake test
  18.  
  19. ...
  20. 3/4 Test #3: soci_postgresql_test .............***Failed 1.37 sec
  21. Start 4: soci_postgresql_test_static
  22. 4/4 Test #4: soci_postgresql_test_static ......***Failed 0.17 sec
  23.  
  24. 50% tests passed, 2 tests failed out of 4
  25.  
  26. Total Test time (real) = 1.63 sec
  27.  
  28. The following tests FAILED:
  29. 3 - soci_postgresql_test (Failed)
  30. 4 - soci_postgresql_test_static (Failed)
  31. Errors while running CTest
  32. NMAKE : fatal error U1077: 'echo' : return code '0x8'
  33. Stop.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement