a highly automated and intuitive digital audio workstation
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// SPDX-FileCopyrightText: © 2021 Alexandros Theodotou <alex@zrythm.org>
|
|
|
|
// SPDX-License-Identifier: LicenseRef-ZrythmLicense
|
|
|
|
|
|
|
|
#include "zrythm-test-config.h"
|
|
|
|
|
|
|
|
#include "settings/settings.h"
|
|
|
|
|
|
|
|
#include "tests/helpers/zrythm.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_append_to_strv (void)
|
|
|
|
{
|
|
|
|
test_helper_zrythm_init ();
|
|
|
|
|
|
|
|
GSettings settings;
|
|
|
|
settings_append_to_strv (
|
|
|
|
&settings, "test-key", "test-val", false);
|
|
|
|
|
|
|
|
test_helper_zrythm_cleanup ();
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char * argv[])
|
|
|
|
{
|
|
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
|
|
|
|
#define TEST_PREFIX "/settings/settings/"
|
|
|
|
|
|
|
|
g_test_add_func (
|
Squashed commit of the following:
commit 4697cdd1d2b1d309ea904b627d3a7fed8a1a357b
Author: luz paz <luzpaz@users.noreply.github.com>
Date: Sun Jan 30 08:44:17 2022 -0500
Revert m.css typos
These have been submitted upstream
commit 5082739f9d52a83bd97f289ff86eddb046614c62
Author: luz paz <luzpaz@users.noreply.github.com>
Date: Sun Jan 30 05:57:08 2022 -0500
Fix various doxygen and misc. typos
Found via `codespell -q 3 -S *.po,./ext,./CHANGELOG.md,./doc/user/_static/js/bootstrap.min.js -L klick,ment,nd,ons,readd,readded,reenable,trough`
1 year ago
|
|
|
TEST_PREFIX "test append to strv",
|
|
|
|
(GTestFunc) test_append_to_strv);
|
|
|
|
|
|
|
|
return g_test_run ();
|
|
|
|
}
|