Changeset 355:1ae3f2c28737 in freeDiameter
- Timestamp:
- Jun 30, 2010, 11:24:15 AM (13 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/nightly_tests/allext.conf
r354 r355 8 8 set(CTEST_BUILD_OPTIONS "") 9 9 set(CTEST_BUILD_OPTIONS "${CTEST_BUILD_OPTIONS} -DBUILD_ACL_WL:BOOL=ON") 10 set(CTEST_BUILD_OPTIONS "${CTEST_BUILD_OPTIONS} -DBUILD_APP_ACCT:BOOL=ON -DTEST_APP_ACCT:BOOL=ON -DTEST_APP_ACCT_CONNINFO:STRING= \"user=test\\ dbname=test\"")10 set(CTEST_BUILD_OPTIONS "${CTEST_BUILD_OPTIONS} -DBUILD_APP_ACCT:BOOL=ON -DTEST_APP_ACCT:BOOL=ON -DTEST_APP_ACCT_CONNINFO:STRING=user=test\\ dbname=test") 11 11 set(CTEST_BUILD_OPTIONS "${CTEST_BUILD_OPTIONS} -DBUILD_APP_RADGW:BOOL=ON") 12 12 set(CTEST_BUILD_OPTIONS "${CTEST_BUILD_OPTIONS} -DBUILD_DBG_MONITOR:BOOL=ON") -
freeDiameter/tests/testappacct.c
r287 r355 109 109 acct_config->conninfo = strdup(TEST_CONNINFO); 110 110 acct_config->tablename = strdup(TABLE); 111 acct_config->tsfield = strdup(" ts");111 acct_config->tsfield = strdup("recorded_on"); 112 112 CHECK( 0, add_avp_in_conf(strdup("Session-Id"), 0) ); 113 113 CHECK( 0, add_avp_in_conf(strdup("Accounting-Record-Type"), 0) ); … … 129 129 130 130 res = PQexec(conn, "CREATE TABLE " TABLE " ( " 131 " tstimestamp with time zone NOT NULL, "131 " recorded_on timestamp with time zone NOT NULL, " 132 132 " \"Accounting-Record-Type\" integer, " 133 133 " \"Session-Id\" bytea, "
Note: See TracChangeset
for help on using the changeset viewer.