aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/linux/modules/lib.mk
Commit message (Expand)AuthorAgeFilesLines
* kernel: add missing dependencies to kmod-crypto-acompressHauke Mehrtens2017-12-161-0/+2
* kernel: add kmod-lib-zstdHauke Mehrtens2017-12-161-0/+22
* kernel: fix lzo and lz4 modulesJohn Crispin2017-11-201-2/+6
* kernel: split kmod-lib-zlib into two packages to keep it in sync with kernel ...Felix Fietkau2016-12-261-9/+17
* kernel: mark compression modules as hiddden to obsolete the compressor kconfi...Felix Fietkau2016-08-041-0/+3
* kernel: remove kernel module checks/dependencies for 3.14Felix Fietkau2015-04-111-1/+0
* kernel: drop obsolete linux 3.10 related dependencies/checksFelix Fietkau2015-04-101-1/+1
* kernel: add crc16 as boot module, it is required by ext4Felix Fietkau2015-03-291-1/+1
* kernel: remove obsolete kernel version dependenciesFelix Fietkau2015-03-191-1/+1
* modules: add lz4 compression supportJohn Crispin2015-01-281-0/+20
* kernel: fix dependency to xor-neon.koHauke Mehrtens2014-05-021-0/+7
* kernel: dont rely on library modules to be depended onJohn Crispin2013-10-081-0/+11
* kernel: lib-textsearch needs to be auto probed for amanda nat to workJohn Crispin2013-09-301-0/+1
* kernel: make most modules use AutoProbeJohn Crispin2013-09-171-12/+0
* kernel: be consistent with formatting styleLuka Perkov2013-07-261-2/+2
* kernel: move xor into its own packageJonas Gorski2013-07-181-0/+16
* kernel: split out lib-raid6Jonas Gorski2013-07-181-0/+16
* packages: clean up the package folderJohn Crispin2013-06-211-0/+165
an class="n">v(b"<html></html>") == ('HTML', [[('text', '<html></html>')]]) assert v(b"<>") == ('XML', [[('text', '<>')]]) assert v(b"<p") == ('XML', [[('text', '<p')]]) with open(data.path("simple.html")) as f: input = f.read() tokens = xml_html.tokenize(input) assert str(next(tokens)) == "Tag(<!DOCTYPE html>)" @pytest.mark.parametrize("filename", [ "simple.html", "cdata.xml", "comment.xml", "inline.html", "test.html" ]) def test_format_xml(filename): path = data.path(filename) with open(path) as f: input = f.read() with open("-formatted.".join(path.rsplit(".", 1))) as f: expected = f.read() tokens = xml_html.tokenize(input) assert xml_html.format_xml(tokens) == expected