mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-02 02:18:31 +00:00
tests: use datadir for sound files
Some (voicemail-related) tests API symlinks beep.gsm and other files from ast_config_AST_VAR_DIR. It should use ast_config_AST_DATA_DIR. ASTERISK-26740 #close Change-Id: Id49c56fb9e16df64b1a2b829693ca7601252df89
This commit is contained in:
committed by
George Joseph
parent
48178e5918
commit
cd2677f966
@@ -14316,7 +14316,7 @@ AST_TEST_DEFINE(test_voicemail_vmsayname)
|
||||
ast_log(AST_LOG_WARNING, "Failed to make test directory\n");
|
||||
goto exit_vmsayname_test;
|
||||
}
|
||||
snprintf(dir, sizeof(dir), "%s/sounds/beep.gsm", ast_config_AST_VAR_DIR);
|
||||
snprintf(dir, sizeof(dir), "%s/sounds/beep.gsm", ast_config_AST_DATA_DIR);
|
||||
snprintf(dir2, sizeof(dir2), "%s%s/%s/greet.gsm", VM_SPOOL_DIR, TEST_CONTEXT, TEST_EXTENSION);
|
||||
/* we're not going to hear the sound anyway, just use a valid gsm audio file */
|
||||
if ((res = symlink(dir, dir2))) {
|
||||
@@ -14562,8 +14562,8 @@ AST_TEST_DEFINE(test_voicemail_notify_endl)
|
||||
break;
|
||||
}
|
||||
|
||||
snprintf(attach, sizeof(attach), "%s/sounds/en/tt-weasels", ast_config_AST_VAR_DIR);
|
||||
snprintf(attach2, sizeof(attach2), "%s/sounds/en/tt-somethingwrong", ast_config_AST_VAR_DIR);
|
||||
snprintf(attach, sizeof(attach), "%s/sounds/en/tt-weasels", ast_config_AST_DATA_DIR);
|
||||
snprintf(attach2, sizeof(attach2), "%s/sounds/en/tt-somethingwrong", ast_config_AST_DATA_DIR);
|
||||
|
||||
if (!(vmu = find_user(&vmus, testcontext, testmailbox)) &&
|
||||
!(vmu = find_or_create(testcontext, testmailbox))) {
|
||||
|
Reference in New Issue
Block a user