OSDN Git Service

Fix packed headers attribute test in vaCreateConfig()
[android-x86/hardware-intel-common-vaapi.git] / test / i965_test_environment.cpp
1 /*
2  * Copyright (C) 2016 Intel Corporation. All Rights Reserved.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sub license, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial portions
14  * of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25 #include "i965_test_environment.h"
26
27 #include <cstdlib>
28 #include <ctime>
29 #include <fcntl.h> // for O_RDWR
30 #include <unistd.h> // for close()
31 #include <va/va_drm.h>
32
33 I965TestEnvironment* I965TestEnvironment::instance()
34 {
35     static I965TestEnvironment* e = new I965TestEnvironment;
36     return e;
37 }
38
39 I965TestEnvironment::I965TestEnvironment()
40     : ::testing::Environment()
41     , m_handle(-1)
42     , m_vaDisplay(NULL)
43 {
44     return;
45 }
46
47 void I965TestEnvironment::SetUp()
48 {
49     std::time_t seed(std::time(0));
50     std::srand(seed);
51     ::testing::Test::RecordProperty("rand_seed", seed);
52     std::cout << "Seeded std::rand() with " << seed << "." << std::endl;
53
54     ASSERT_EQ(-1, m_handle);
55     ASSERT_PTR_NULL(m_vaDisplay);
56
57     m_handle = open("/dev/dri/renderD128", O_RDWR);
58     if (m_handle < 0)
59         m_handle = open("/dev/dri/card0", O_RDWR);
60
61     m_vaDisplay = vaGetDisplayDRM(m_handle);
62
63     ASSERT_PTR(m_vaDisplay);
64
65     setenv("LIBVA_DRIVERS_PATH", TEST_VA_DRIVERS_PATH, 1);
66     setenv("LIBVA_DRIVER_NAME", "i965", 1);
67
68     int major, minor;
69     ASSERT_STATUS(vaInitialize(*this, &major, &minor));
70
71     EXPECT_EQ(VA_MAJOR_VERSION, major);
72     EXPECT_EQ(VA_MINOR_VERSION, minor);
73
74     VADriverContextP context(*this);
75     ASSERT_PTR(context);
76
77     const std::string vendor(context->str_vendor);
78
79     ::testing::Test::RecordProperty("driver_vendor", vendor);
80     ::testing::Test::RecordProperty("vaapi_version", VA_VERSION_S);
81 }
82
83 void I965TestEnvironment::TearDown()
84 {
85     if (m_vaDisplay) {
86         EXPECT_STATUS(vaTerminate(m_vaDisplay));
87     }
88
89     if (m_handle >= 0)
90         close(m_handle);
91
92     m_handle = -1;
93     m_vaDisplay = NULL;
94 }