summaryrefslogtreecommitdiff
path: root/tools/build/v2/test/engine/builtin_w32_getregnames.jam
blob: 1082f4ad72189802c318d8dd72304d5870542b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#~ Copyright 2006 Rene Rivera.
#~ Distributed under the Boost Software License, Version 1.0.
#~ (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)

ECHO --- Testing W32_GETREGNAMES builtin... ;

if $(NT)
{
    assert "Beep" "ExtendedSounds"
        : (==) : [ W32_GETREGNAMES "HKEY_CURRENT_USER\\Control Panel\\Sound" : values ] ;
    assert "Beep" "ExtendedSounds"
        : (==) : [ W32_GETREGNAMES "HKCU\\Control Panel\\Sound" : values ] ;
    assert "Control" "Enum" "Hardware Profiles" "Services"
        : (==) : [ W32_GETREGNAMES "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet" : subkeys ] ;
    assert "Control" "Enum" "Hardware Profiles" "Services"
        : (==) : [ W32_GETREGNAMES "HKLM\\SYSTEM\\CurrentControlSet" : subkeys ] ;
}