mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-22 01:03:07 +00:00
87b7292aa5
drgn is currently licensed as GPLv3+. Part of the long term vision for drgn is that other projects can use it as a library providing programmatic interfaces for debugger functionality. A more permissive license is better suited to this goal. We decided on LGPLv2.1+ as a good balance between software freedom and permissiveness. All contributors not employed by Meta were contacted via email and consented to the license change. The only exception was the author of commitc4fbf7e589
("libdrgn: fix for compilation error"), who did not respond. That commit reverted a single line of code to one originally written by me in commit640b1c011d
("libdrgn: embed DWARF index in DWARF info cache"). Signed-off-by: Omar Sandoval <osandov@osandov.com>
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
from functools import cmp_to_key
|
|
|
|
from tests import TestCase
|
|
from util import KernelVersion, verrevcmp
|
|
|
|
|
|
class TestUtil(TestCase):
|
|
def assertVersionSort(self, sorted_list):
|
|
self.assertEqual(sorted(sorted_list, key=cmp_to_key(verrevcmp)), sorted_list)
|
|
|
|
def test_verrevcmp(self):
|
|
self.assertVersionSort(
|
|
["0~", "0", "1", "1.0", "1.1~rc1", "1.1~rc2", "1.1", "1.2", "1.12"]
|
|
)
|
|
self.assertVersionSort(["a", "."])
|
|
self.assertVersionSort(["", "1"])
|
|
self.assertVersionSort(["~", "~1"])
|
|
self.assertVersionSort(["~~", "~~a", "~", "", "a"])
|
|
|
|
def test_kernel_version(self):
|
|
self.assertLess(KernelVersion("1.0"), KernelVersion("2.0"))
|
|
self.assertLess(KernelVersion("5.6.0-rc6"), KernelVersion("5.6.0-rc7"))
|
|
self.assertLess(KernelVersion("5.6.0-rc7"), KernelVersion("5.6.0"))
|
|
self.assertLess(
|
|
KernelVersion("5.6.0-rc7-vmtest2"), KernelVersion("5.6.0-vmtest1")
|
|
)
|
|
self.assertLess(KernelVersion("5.6.0-vmtest1"), KernelVersion("5.6.0-vmtest2"))
|