Navigation


Changeset 355:1ae3f2c28737 in freeDiameter


Ignore:
Timestamp:
Jun 30, 2010, 11:24:15 AM (14 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Yet another fix

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • contrib/nightly_tests/allext.conf

    r354 r355  
    88set(CTEST_BUILD_OPTIONS "")
    99set(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\"")
     10set(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")
    1111set(CTEST_BUILD_OPTIONS "${CTEST_BUILD_OPTIONS} -DBUILD_APP_RADGW:BOOL=ON")
    1212set(CTEST_BUILD_OPTIONS "${CTEST_BUILD_OPTIONS} -DBUILD_DBG_MONITOR:BOOL=ON")
  • freeDiameter/tests/testappacct.c

    r287 r355  
    109109                acct_config->conninfo = strdup(TEST_CONNINFO);
    110110                acct_config->tablename = strdup(TABLE);
    111                 acct_config->tsfield = strdup("ts");
     111                acct_config->tsfield = strdup("recorded_on");
    112112                CHECK( 0, add_avp_in_conf(strdup("Session-Id"), 0) );
    113113                CHECK( 0, add_avp_in_conf(strdup("Accounting-Record-Type"), 0) );
     
    129129               
    130130                res = PQexec(conn, "CREATE TABLE " TABLE " ( "
    131                                         "  ts timestamp with time zone NOT NULL, "
     131                                        "  recorded_on timestamp with time zone NOT NULL, "
    132132                                        "  \"Accounting-Record-Type\" integer, "
    133133                                        "  \"Session-Id\" bytea, "
Note: See TracChangeset for help on using the changeset viewer.